A python module for uploading data to s3 using the s3 multipart API
Project description
A python module for uploading data to s3 using the multipart API.
Installation
Install via pip:
$ pip install s3upload
CLI
Use the s3upload CLI to upload from stdin or from data provided on the command line.
Usage: s3upload [options]
Options:
-h, --help show this help message and exit
-b BUCKET, --bucket=BUCKET
the s3 bucket to upload to
-k KEY, --key=KEY the name of the key to create in the bucket
-K AWS_KEY, --aws_key=AWS_KEY
aws access key
-s AWS_SECRET, --aws_secret=AWS_SECRET
aws secret key
-d DATA, --data=DATA the data to upload to s3 -- if left blank will be read
from STDIN
-t THREADS, --threads=THREADS
number of threads to use while uploading in parallel
Module
You can also interface with the module from python:
>>> from s3upload import upload
def upload(bucket, aws_access_key, aws_secret_key,
iterable, key, progress_cb=None,
threads=5, replace=False, secure=True):
''' Upload data to s3 using the s3 multipart upload API.
Args:
bucket: name of s3 bucket
aws_access_key: aws access key
aws_secret_key: aws secret key
iterable: The data to upload. Each 'part' in the list
will be uploaded in parallel. Each part must be at
least 5242880 bytes (5mb).
key: the name of the key to create in the s3 bucket
progress_cb: will be called with (part_no, uploaded, total)
each time a progress update is available.
threads: the number of threads to use while uploading.
replace: will replace the key in s3 if set to true. (Default is false)
secure: use ssl when talking to s3. (Default is true)
'''
Licence
MIT
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
s3upload-0.2.4.tar.gz
(3.5 kB
view details)
File details
Details for the file s3upload-0.2.4.tar.gz
.
File metadata
- Download URL: s3upload-0.2.4.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6672af1a079abeff96c5efd9125054461b25338233b58893ef87544bd1b00f20 |
|
MD5 | 5ea8f280599bb8a32bff1f7fc3b4a44a |
|
BLAKE2b-256 | 2eef0b0510523b13fa22abcc1068a4156c4027043d9199154ef4ca794279e21e |