https://github.com/alexdemure/gads3
An async and lightweight S3 client for uploading, downloading, and deleting files.
https://github.com/alexdemure/gads3
s3 s3client
Last synced: 5 days ago
JSON representation
An async and lightweight S3 client for uploading, downloading, and deleting files.
- Host: GitHub
- URL: https://github.com/alexdemure/gads3
- Owner: AlexDemure
- License: mit
- Created: 2025-04-07T14:22:24.000Z (about 1 month ago)
- Default Branch: production
- Last Pushed: 2025-04-12T08:05:05.000Z (about 1 month ago)
- Last Synced: 2025-04-23T21:02:14.979Z (26 days ago)
- Topics: s3, s3client
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
An async and lightweight S3 client for uploading, downloading, and deleting files---
### Installation
```
pip install gads3
```### Usage
```sh
from gads3 import S3, Mimetypes3 = S3(
bucket="media",
endpoint_url="http://localhost:9000",
aws_access_key_id="S3_ACCESS_KEY",
aws_secret_access_key="S3_SECRET_KEY",
)await s3.upload(file=bytes, filename="filename", mimetype=Mimetype.jpeg storage="files")
await s3.delete(filename="filename", mimetype=Mimetype.jpeg storage="files")
```