An open API service indexing awesome lists of open source software.

https://github.com/level09/s3file

extremely simple and limited s3 file upload library
https://github.com/level09/s3file

Last synced: about 1 year ago
JSON representation

extremely simple and limited s3 file upload library

Awesome Lists containing this project

README

          

# s3file

Very simplified Library for s3 file uploads.

###Usage

```
from s3file import S3File
file = S3File('your s3 access key', 'your s3 secret token', 'your bucket name')
print file.push_from_url("https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png")

print file.push_from_path('path to your file')

```