Metadata-Version: 2.1
Name: aios3
Version: 0.1.4
Summary: Wrapper for aiobotocore to simplify reading of large files
Home-page: https://andgineer.github.io/aios3/
Author: Andrey Sorokin
Author-email: andrey@sorokin.engineer
License: UNKNOWN
Keywords: asyncio boto3 botocore s3 aws
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

[![Build Status](https://github.com/andgineer/aios3/workflows/ci/badge.svg)](https://github.com/andgineer/aios3/actions)
# File-like object for aiobotocore

With [stream](https://andgineer.github.io/aios3/docstrings/file/#function-stream) you can create file-like object
to read from [aiobotocore](https://aiobotocore.readthedocs.io/en/latest/) "files" by chunks.

# Documentation

[aioS3](https://andgineer.github.io/aios3/)

# Developers

Do not forget to run `. ./activate.sh`.

# Python github project template

You can use this repository as template for your Python projects.

It brings:

- Python virtual environment (see `activate.sh`)
- pre-commit configuration with mypy, flake8, black and docstrings linter (see `.pre-commit-config.yaml`, [install pre-commit](https://pre-commit.com) and activate it with `pre-commit install`)
- github pages: [read the article](https://sorokin.engineer/posts/en/github-pages-lazydocs-mkdocs.html), the site generated from md-files in `docs/`, `docs/docstrings/` is autogenerated from source code docstrings (see `.github/workflows/docs.yml`)
- pytest with examples of async tests and fixtures (see `tests/`)
- github actions to linter, test and to create github pages (see `.github/workflows/`)
- versions in git tags (see `verup.sh`)
- publishing Python package on pypi (see `upload.sh`)


