A small library for uploading files to S3 with support for async uploads, worker pools, cache headers, etc. Current version is 0.1.12, released infrequently.
pip install tinys3No compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize a connection and upload a file. Replace ACCESS_KEY and SECRET_KEY with your AWS credentials.
Explicitly pass keys to Connection(), or set environment variables and use conn = Connection(None, None, tls=True) — but note that None keys may cause attribute errors in some versions.
Consider migrating to boto3 for long-term support.
Use boto3's multipart upload for files > 5GB.
Set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables, or pass valid key strings to Connection().
Enable TLS and ensure you are using valid credentials. If problem persists, use boto3.
No dependency data recorded yet.