Skip to main content

AsyncExitStack backport for Python 3.5+

Project description

https://img.shields.io/pypi/v/async_exit_stack.svg https://img.shields.io/travis/sorcio/async_exit_stack.svg

AsyncExitStack backport for Python 3.5+

This package contains code from the CPython project.

Install

pip install async_exit_stack

Usage example

from async_exit_stack import AsyncExitStack

async def some_async_function():
    async with AsyncExitStack() as stack:
        connections = [await stack.enter_async_context(get_connection())
            for i in range(5)]
        # All opened connections will automatically be released at the end of
        # the async with statement, even if attempts to open a connection
        # later in the list raise an exception.

Reference

Refer to Python 3.7 contextlib documentation for a complete reference and more context.

class AsyncExitStack

An asynchronous context manager, similar to ExitStack, that supports combining both synchronous and asynchronous context managers, as well as having coroutines for cleanup logic.

The close() method is not implemented, aclose() must be used instead.

enter_async_context(cm)

Similar to enter_context() but expects an asynchronous context manager.

push_async_exit(exit)

Similar to push() but expects either an asynchronous context manager or a coroutine.

push_async_callback(callback, *args, **kwds)

Similar to callback() but expects a coroutine.

aclose()

Similar to close() but properly handles awaitables.

History

1.0.0 (2018-05-07)

  • First release based on Python 3.7b4.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

async_exit_stack-1.0.1.tar.gz (10.6 kB view hashes)

Uploaded Source

Built Distribution

async_exit_stack-1.0.1-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page