Skip to main content

asyncio-loop-local storage, singletons and deferred __aexit__'s. Init that pool once and reuse it!

Project description

asyncio-loop-local

asyncio-loop-local storage, singletons and deferred aexit's. Init that pool once and reuse it!

why have loop-local things

Suppose you have some async context manager, like aiohttp.ClientSession:

async with aiohttp.ClientSession() as session:
    async with session.get('http://httpbin.org/get') as resp:
        print(await resp.text())

But the docs tell you: "don't create a session per request". So, you need to reuse it somehow, and this means you need to init it somewhere and then either pass it around all the code that might need it, or... use global variables? There must be a better way.

sticky_singleton_acm

The all-in-one solution to this is:

_ClientSession = asyncio_loop_local.sticky_singleton_acm(ClientSession)

...

async _ClientSession() as session:
    async with session.get('http://httpbin.org/get') as resp:
        print(await resp.text())

The wrapper gives you

  • the same ClientSession for every combination of parameters passed to it (singleton)
  • that doesn't __aexit__ when the block is over, only when the async event loop is closed (sticky ACM)

enter_once + singleton

Those willing to save up a level of indentation (after all, de-denting is a no-op as __aexit__'ing effect is deferred anyway) might be interested in combining two simpler primitives to the same effect:

_ClientSession = asyncio_loop_local.singleton(ClientSession)

...

session = await asyncio_loop_local.enter_once(_ClientSession())
async with session.get('http://httpbin.org/get') as resp:
    print(await resp.text())

singleton

Decorate your callable that generates something, and the returned value will be cached per async loop (and per passed parameters).

_ClientSession = asyncio_loop_local.singleton(ClientSession)

_ClientSession() is _ClientSession()  # as long you're in the same event loop

enter_once

Invoke __anter__ of an asynchronous context manager now, defer __aexit__ to the end of the event loop. Repeated attempts to enter_once on the same object will do nothing.

session = await asyncio_loop_local.enter_once(ClientSession())
...
# __aexit__ will be executed at the end of the event loop

sticky_acm

Wrap an asynchronous context manager. __anter__ just proxies the original context manager's __aenter__, __aexit__ does nothing and is deferred to end of the event loop. It's like enter_once, but in a form to use with async with.

cs = asyncio_loop_local.sticky_acm(ClientSession())
async with cs:  # __aenter__'s
    ...
# __aexit__ will be executed at the end of the event loop

enter

Invoke __anter__ of an asynchronous context manager now, defer __aexit__ to the end of the event loop.

session = await asyncio_loop_local.enter_once(ClientSession())
...
# __aexit__ will be executed at the end of the event loop

storage

Async-loop-local storage. Like thread-local, but loop-local. All the hacks above are built up on it.

alls = asyncio_loop_local._storage.storage()  # gives a loop-associated dict
alls['purpose'] = ('whatever', {'you': 'want'})

If you wanna use locking, consider this:

class LockingDict(dict, asyncio.Lock): pass
alls['careful'] = LockingDict()
with alls['careful'] as d:
   d['a'] = 'b'

_atexit

There's also an async-loop-local atexit hook implementation. It's private so far until some interest is expressed.

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

asyncio_loop_local-0.0.2.tar.gz (46.9 kB view details)

Uploaded Source

Built Distribution

asyncio_loop_local-0.0.2-py3-none-any.whl (32.7 kB view details)

Uploaded Python 3

File details

Details for the file asyncio_loop_local-0.0.2.tar.gz.

File metadata

  • Download URL: asyncio_loop_local-0.0.2.tar.gz
  • Upload date:
  • Size: 46.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.6

File hashes

Hashes for asyncio_loop_local-0.0.2.tar.gz
Algorithm Hash digest
SHA256 a84343146f08b252d04d5cdf8bd42bec0a53b7121a5d2bfb003744297169c047
MD5 77dbc7e190a05ee7a0eb0ab68b1e05f0
BLAKE2b-256 61262473fc568445ee730dfb4740b0eb36d0dedb5304ccbcec57537f557b35d1

See more details on using hashes here.

File details

Details for the file asyncio_loop_local-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for asyncio_loop_local-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3a00c011d819ae71e775fb835656bec5d4d84a6e625a1527d358258d2d581434
MD5 21d661f69c32ea43e1f05119b390aeac
BLAKE2b-256 5b9c979d54cc048632cecd20cc5a33b5a00d254f65346c13060ceafb667295b1

See more details on using hashes here.

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