Tar (and compress) files in s3
Project description
s3-tar
Create a tar/tar.gz/tar.bz2 file from many s3 files and stream back into s3.
*Currently does not preserve directory structure, all files will be in the root dir
Install
pip install s3-tar
Usage
Command Line
To see all command line options run:
s3-tar -h
Import
from s3_tar import S3Tar
# Init the job
job = S3Tar(
'YOUR_BUCKET_NAME',
'FILE_TO_SAVE_TO.tar', # Use `tar.gz` or `tar.bz2` to enable compression
# min_file_size='50MB', # The min size to make each tar file [B,KB,MB,GB,TB]. If set, a number will be added to each file name
# target_bucket=None, # Default: source bucket. Can be used to save the archive into a different bucket
# cache_size=5, # Default 5, Number of files to hold in memory to be processed
# save_metadata=False, # If True
# session=boto3.session.Session(), # For custom aws session
)
# Add files, can call multiple times to add files from other directories
job.add_files('FOLDER_IN_S3/)
# Add a single file at a time
job.add_file('some/file_key.json')
# Star the tar'ing job after files have been added
job.tar()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
s3-tar-0.1.4.tar.gz
(6.1 kB
view details)
File details
Details for the file s3-tar-0.1.4.tar.gz.
File metadata
- Download URL: s3-tar-0.1.4.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.1.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f8b86ec00c8951c5fb213ffda4c80f174497ddc849bfcd7a23fe2a509101ecb
|
|
| MD5 |
055a9411cfe4d922eb5c372ac0430312
|
|
| BLAKE2b-256 |
a4fb41825940dd559f3cf7159c9d1d51346511624b505aae27b14b29c8d89023
|