Skip to main content

Task locals for Tulip/asyncio

Project description

Task locals support for tulip/asyncio
~~~~~~~~~~~~~~~~~~~~~

It provides Task local storage similar to python's threading.local
but for Tasks in asyncio.

Using task locals has some caveats:

* Unlike thread locals, where you are always sure that at least one thread is running(namely main thread), Task locals are available only in the context of a running Task. So if you try to access a task local from outside a Task you will get a RuntimeError.
* Be aware that using asyncio.gather and asyncio.shield launches a new task, so these coroutines will have its own local storage.

For more information on using locals see the docs for threading.local in python's standard library

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

tasklocals-0.1.tar.gz (2.4 kB view hashes)

Uploaded Source

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