Metadata-Version: 2.1
Name: asyncstdlib
Version: 1.0.0
Summary: The missing ``async`` toolbox
Home-page: https://github.com/maxfischer2781/asyncstdlib
License: UNKNOWN
Keywords: async enumerate itertools builtins functools contextlib
Author: Max Fischer
Author-email: maxfischer2781@gmail.com
Description-Content-Type: text/x-rst
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Dist: typing_extensions
Requires-Dist: sphinx; extra == "doc"
Requires-Dist: sphinxcontrib-contentui; extra == "doc"
Requires-Dist: sphinxcontrib-trio; extra == "doc"
Requires-Dist: pytest >=4.3.0; extra == "test"
Requires-Dist: flake8; extra == "test"
Requires-Dist: flake8-bugbear; extra == "test"
Requires-Dist: black; extra == "test" and ( implementation_name=='cpython')
Project-URL: Documentation, https://asyncstdlib.readthedocs.io/en/latest/
Provides-Extra: doc
Provides-Extra: test

================================================
``asyncstdlib`` -- the missing ``async`` toolbox
================================================

.. image:: https://readthedocs.org/projects/asyncstdlib/badge/?version=latest
    :target: http://asyncstdlib.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://img.shields.io/pypi/v/asyncstdlib.svg
    :alt: Available on PyPI
    :target: https://pypi.python.org/pypi/asyncstdlib/

.. image:: https://img.shields.io/github/license/maxfischer2781/asyncstdlib.svg
    :alt: License
    :target: https://github.com/maxfischer2781/asyncstdlib/blob/master/LICENSE

The ``asyncstdlib`` library re-implements functions and classes of the Python
standard library to make them compatible with ``async`` callables, iterables
and context managers.
It is fully agnostic to ``async`` event loops and seamlessly works with
``asyncio``, third-party libraries such as ``trio``, as well as
any custom ``async`` event loop.

