Skip to main content

Convenient CLI tool to work with versioned (including Object Lock) S3 buckets (recover, undelete, etc.)

Project description

s3v

Convinient CLI tool to work with versioned S3 buckets. Like aws s3 or aws s3api but much easier to use.

s3v is like if aws s3 and aws s3api were built on our planet — for actual humans.

Installation

# recommended
pipx install s3v

# or from git
pipx install git+https://github.com/yaroslaff/s3v

Configuration

s3v uses boto3, so configuration is same as for aws utility (same ~/.aws/ files or AWS_ shell variables, and optional --profile NAME argument)

Examples

We upload three versions of same file, each one will overwrite old copy.

Upload

$ echo 1 > test.txt 
$ s3v cp test.txt s3://stg-objectlock/s3v/
$ echo 2 > test.txt 
$ s3v cp test.txt s3://stg-objectlock/s3v/
$ echo 3 > test.txt 
$ s3v cp test.txt s3://stg-objectlock/s3v/

You can also give full target name like s3://stg-objectlock/s3v/test.txt. s3:// prefix is optional (s3 will try to guess what is local file and what is bucket name).

List

Now, list contents of s3v logical 'folder' (all objects with name starting with s3v/). In "ls" we see filename, last modification time (UTC), size of latest copy and number of versions in storage. If we give full name of object, ls will list all versions of this object.

$ s3v ls stg-objectlock/s3v
test.txt                                |2026-02-10 16:21:55|              2|   3|

$ s3v ls stg-objectlock/s3v/test.txt
Objects under prefix 's3v/test.txt':
s3v/test.txt
   by0fQCa9Jl7gFgl8vKEjaDvl8z3CSRnD          2  2026-02-10 16:21:30
   LHK6nA8Ny5YHNh7TOoH94LDinqCH9Czt          2  2026-02-10 16:21:46
   iIGXCsBmEKvBq7DhaP09DIzp3fLO9d1H          2  2026-02-10 16:21:55

Downloading

s3v cp will download latest version of file.

$ s3v cp stg-objectlock/s3v/test.txt .

$ cat test.txt 
3

Give -s VERSION to download specific version.

$ s3v cp stg-objectlock/s3v/test.txt . -s by0fQCa9Jl7gFgl8vKEjaDvl8z3CSRnD
  Using version: by0fQCa9Jl7gFgl8vKEjaDvl8z3CSRnD
$ cat test.txt 
1

You can use human language for -s, it understands words: first (oldest), latest, (last, newest), previous (prev, p). Numerical index where 0 is oldest copy, 1 is next one and so on. Negative numbers are counted from latest, e.g. -1 is latest copy, -2 is little older and so on. You can give time specification (we use dateparser) so it understands "yesterday", "2 weeks ago" or "2026-02-10 16:22" or "16:22". If time specification given, s3v will download version which was current on that time (latest uploaded before this time).

$ s3v cp stg-objectlock/s3v/test.txt . -s 'midnight'
# Downloading s3://stg-objectlock/s3v/test.txt >>> test.txt...
# will use version from 2026-02-10 17:22:31+00:00 which is the latest version older than specified time 2026-02-11 00:00:00+00:00
  Using version: EouOCDXQpn6xvA9LOXhlB6JITw_DZj_0
# Successfully downloaded (2) to test.txt

Delete and undelete

s3v rm deletes file. After deletion, aws s3 ls do not list file, but s3v ls still shows it with [DEL] tag.

$ s3v rm stg-objectlock/s3v/test.txt
$ aws s3 ls stg-objectlock/s3v/
$ s3v ls stg-objectlock/s3v/
test.txt                                |2026-02-10 16:35:00|              2|   4| [DEL]

If we will see versions for file, we will see special delete marker on S3 (which makes file to be logically 'deleted').

$ s3v ls stg-objectlock/s3v/test.txt
Objects under prefix 's3v/test.txt':
s3v/test.txt [deleted]
   by0fQCa9Jl7gFgl8vKEjaDvl8z3CSRnD          2  2026-02-10 16:21:30
   LHK6nA8Ny5YHNh7TOoH94LDinqCH9Czt          2  2026-02-10 16:21:46
   iIGXCsBmEKvBq7DhaP09DIzp3fLO9d1H          2  2026-02-10 16:21:55
   odaXkvFlMoAWwDu_q.K3esuYdHjUpgMg  [DELETED]  2026-02-10 16:40:33

s3v unrm will remove "delete marker" and file (latest version) will be available again.

$ s3v unrm stg-objectlock/s3v/test.txt

$ s3v ls stg-objectlock/s3v/
test.txt                                |2026-02-10 16:35:00|              2|   3|

s3v wipe will delete ALL VERSIONS of speficied object.

$ s3v wipe s3://stg-objectlock/test_file_1770544464743.txt
# Wiping s3://stg-objectlock/test_file_1770544464743.txt (deleting all versions and delete markers)...
# Successfully wiped s3://stg-objectlock/test_file_1770544464743.txt from history (deleted 2 versions/delete markers)

Restore specific version

To recover specific version of file (make it to be current) use s3v recover (or just s3v r). Let's recover first version of file.

$ s3v recover stg-objectlock/s3v/test.txt . -s by0fQCa9Jl7gFgl8vKEjaDvl8z3CSRnD
Successfully recovered version by0fQCa9Jl7gFgl8vKEjaDvl8z3CSRnD as current version of s3://stg-objectlock/s3v/test.txt

$ s3v cp stg-objectlock/s3v/test.txt . 
$ cat test.txt 
1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

s3v-0.1.3.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

s3v-0.1.3-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file s3v-0.1.3.tar.gz.

File metadata

  • Download URL: s3v-0.1.3.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.3 cpython/3.13.5 HTTPX/0.28.1

File hashes

Hashes for s3v-0.1.3.tar.gz
Algorithm Hash digest
SHA256 8256c07ec54a8bbc643fc22caf85a23026fa42b6a8eed6bc23cb3995c3258b88
MD5 3ceadf5d9f55a4913ade7c99b8935453
BLAKE2b-256 6e400ffc006faa15a3b37a207f74628bb3b70e790d1c7295977c4872d6bd72de

See more details on using hashes here.

File details

Details for the file s3v-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: s3v-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.3 cpython/3.13.5 HTTPX/0.28.1

File hashes

Hashes for s3v-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6b2003863ae19c59baaca622858764f75ddcc35eeb6b5df787ce8c69e546132d
MD5 0c1451a606152e365150f2820bcaef4d
BLAKE2b-256 4417da5a11bcc0e2de712d2efd97a6a110ba122649561358d859fb6fa1ba40e3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page