├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── s3streaming ├── __init__.py ├── opener.py └── stream.py ├── setup.py └── tests └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /s3streaming/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/s3streaming/__init__.py -------------------------------------------------------------------------------- /s3streaming/opener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/s3streaming/opener.py -------------------------------------------------------------------------------- /s3streaming/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/s3streaming/stream.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhowley/s3-streaming/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------