🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

asyncio-contextmanager

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asyncio-contextmanager

Decorator that turns async generator functions into async context managers.

1.0.1
PyPI
Maintainers
1

asyncio-contextmanager

|PyPI version| |GitHub release| |Build Status| |codecov| |GitHub license|

Decorator that turns async generator functions into async context managers.

Installation

Supported versions of python: 3.6+ (since async generators were introduced in python 3.6)

.. code:: shell

pip install asyncio-contextmanager

Usage

Usage is straightforward and simple:

.. code:: python

from aiocontext import async_contextmanager

@async_contextmanager
async def foo():
    yield 'Foo!'

.. |PyPI version| image:: https://badge.fury.io/py/asyncio-contextmanager.svg :target: https://badge.fury.io/py/asyncio-contextmanager .. |GitHub release| image:: https://img.shields.io/github/release/sashgorokhov/asyncio-contextmanager.svg :target: https://github.com/sashgorokhov/asyncio-contextmanager .. |Build Status| image:: https://travis-ci.org/sashgorokhov/asyncio-contextmanager.svg?branch=master :target: https://travis-ci.org/sashgorokhov/asyncio-contextmanager .. |codecov| image:: https://codecov.io/gh/sashgorokhov/asyncio-contextmanager/branch/master/graph/badge.svg :target: https://codecov.io/gh/sashgorokhov/asyncio-contextmanager .. |GitHub license| image:: https://img.shields.io/badge/license-MIT-blue.svg :target: https://raw.githubusercontent.com/sashgorokhov/asyncio-contextmanager/master/LICENSE

Keywords

python

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts