Metadata-Version: 2.1
Name: aio-botocore
Version: 1.3.3
Summary: Async client for aws services using botocore and aiohttp
Home-page: http://aiobotocore.readthedocs.io
License: Apache-2.0
Keywords: Intended Audience :: Developers,Intended Audience :: System Administrators,Programming Language :: Python :: 3,Programming Language :: Python :: 3.6,Programming Language :: Python :: 3.7,Programming Language :: Python :: 3.8,Environment :: Web Environment,Development Status :: 3 - Alpha,Framework :: AsyncIO
Author: Nikolay Novik
Author-email: nickolainovik@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Provides-Extra: awscli
Provides-Extra: boto3
Requires-Dist: aiohttp (>=3.3.1,<4.0.0)
Requires-Dist: aioitertools (>=0.5.1,<0.6.0)
Requires-Dist: awscli (>=1.18.0,<2.0.0); extra == "awscli"
Requires-Dist: boto3 (>=1.17.0,<2.0.0); extra == "boto3"
Requires-Dist: botocore (>=1.20.0,<2.0.0)
Requires-Dist: wrapt (>=1.10.10,<2.0.0)
Project-URL: Repository, https://github.com/dazza-codes/aiobotocore
Description-Content-Type: text/x-rst

aio-botocore
============

The sole purpose of this fork is to release a version of
[aiobotocore](https://github.com/aio-libs/aiobotocore) with
relaxed constraints on the dependencies for botocore and boto3.
This should enable algorithms for resolving dependencies to
work more efficiently with this library.

Hopefully any risks in relaxing the versions allowed for
botocore and boto3 are minimal.  However, use at your own
risk (i.e. use your own unit tests and test coverage to
manage your risks).

If the original library works for your purposes, use it
instead of this library.  If changes to this library are working,
some form of the changes might get integrated into the original
project.  If so, hopefully this library will cease to exist
(or at least cease to be maintained in this form).

Install
-------
::

    $ pip install aio-botocore

The original library is installed using

    $ pip install aiobotocore

