Memoize asyncio Python function calls
Project description
aiomemoize

Memoize asyncio Python calls. Invalidation is manual/explicit for each set of arguments, although exceptions raised are not cached. This can be used for coroutines, and functions that return a promise.
Installation
pip install aiomemoize
Usage
For a coroutine whose arguments are hashable, you can create a memoized version by passing it to memoize. This returns a tuple of the memoized function, and a function to invalidate the cache on a per-item basis.
For example, the below
import asyncio
from aiomemoize import memoize
async def main():
memoized, invalidate = memoize(coro)
results = await asyncio.gather(*[
memoized('a'),
memoized('a'),
memoized('b'),
])
print(results)
invalidate('a')
results = await asyncio.gather(*[
memoized('a'),
memoized('a'),
memoized('b'),
])
print(results)
await memoized('a')
async def coro(value):
print('Inside coro', value)
await asyncio.sleep(1)
return value
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
will output
Inside coro a
Inside coro b
['a', 'a', 'b']
Inside coro a
['a', 'a', 'b']
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiomemoize-0.0.3.tar.gz.
File metadata
- Download URL: aiomemoize-0.0.3.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d938faaeb7569bdb23d22636d5a3b9c0f23e70eee31c0636f94ba892a5adab7f
|
|
| MD5 |
0c724b9fabfe01e7c5e66dd5e4ae3dc6
|
|
| BLAKE2b-256 |
bac063535cf9caa105841274e5aa93f1ad630786343e63adcde05d47a258c502
|
File details
Details for the file aiomemoize-0.0.3-py3-none-any.whl.
File metadata
- Download URL: aiomemoize-0.0.3-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f43482f396765038af49b33d4a4915b24e403049fc777883ad25cb3e5ac38b5c
|
|
| MD5 |
75b5cc8a0f65a779809f74790bbd64cc
|
|
| BLAKE2b-256 |
a9f24de59365566e454aa880db8d2a6369349f8fa726d1d2c472a1309eb6ba70
|