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
- Host: GitHub
- URL: https://github.com/level09/s3file
- Owner: level09
- Created: 2016-01-09T21:39:48.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-09T22:06:52.000Z (about 10 years ago)
- Last Synced: 2025-01-10T00:40:56.248Z (about 1 year ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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')
```