A suite of typed data structures backed by Amazon S3.
Project description
Typed access to Amazon S3 for humans
Installation
pip install sthree
sthree
requires boto3
for its operation, but it is not listed as package dependency because, if you'd want to use sthree
in AWS Lambda, you do not need to install boto3
there - since it is already installed.
If you're not using Lambda you may run
pip install sthree[boto]
to make sure all dependencies are satisfied.
Usage Examples
from sthree import Keys from itertools import islice for key in islice(Keys('my-bucket'), 10): print(key)
Motivation
Motivation to build this library is to simplify using Amazon S3 in Python applications and to make development experience a bit more pleasant and Pythonic, as well as to benefit from Python's type hinting capabilities.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size sthree-0.1.2-py3-none-any.whl (3.9 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size sthree-0.1.2.tar.gz (3.1 kB) | File type Source | Python version None | Upload date | Hashes View |