Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agronholm/asyncio_extras
Asynchronous generators, context managers and other utilities for use with asyncio
https://github.com/agronholm/asyncio_extras
Last synced: 3 months ago
JSON representation
Asynchronous generators, context managers and other utilities for use with asyncio
- Host: GitHub
- URL: https://github.com/agronholm/asyncio_extras
- Owner: agronholm
- License: other
- Created: 2016-04-08T16:49:22.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T06:13:11.000Z (over 6 years ago)
- Last Synced: 2024-10-15T20:32:50.979Z (3 months ago)
- Language: Python
- Size: 40 KB
- Stars: 63
- Watchers: 6
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- starred-awesome - asyncio_extras - Asynchronous generators, context managers and other utilities for use with asyncio (Python)
README
.. image:: https://travis-ci.org/agronholm/asyncio_extras.svg?branch=master
:target: https://travis-ci.org/agronholm/asyncio_extras
:alt: Build Status
.. image:: https://coveralls.io/repos/agronholm/asyncio_extras/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/agronholm/asyncio_extras?branch=master
:alt: Code Coverage
.. image:: https://readthedocs.org/projects/asyncio-extras/badge/?version=latest
:target: https://asyncio-extras.readthedocs.io/en/latest/?badge=latest
:alt: Documentation StatusThis library provides several conveniences to users of asyncio_:
* decorator for making asynchronous context managers (like ``contextlib.contextmanager``)
* decorator and context manager for running a function or parts of a function in a thread pool
* helpers for calling functions in the event loop from worker threads and vice versa
* helpers for doing non-blocking file i/o.. _asyncio: https://docs.python.org/3/library/asyncio.html