A collection of python utils.
Project description
utils-py
A set of python utilities.
Usage
poetry add outcome-utils
Cache
To add cache to a module
from outcome.utils import cache
cache_settings = {
'<your_prefix>.expiration': 300, # Default
'<your_prefix>.backend': 'memory', # Default
}
region = cache.get_cache_region()
cache.configure_cache_region(region, settings=cache_settings, prefix='<your_prefix>')
Then add to the functions to cache:
@region.cache_on_arguments()
def func_to_cache():
...
Or for async functions:
@region.cache_on_arguments()
@cache.cache_async
async def async_func_to_cache():
...
To have the cache persist on disk, specify the path
from pathlib import Path
cache_settings = {
...
'<your_prefix>.cache_path': f'{Path.home()}/.cache/example_path/cache.pkl'',
...
}
Development
Remember to run ./pre-commit.sh
when you clone the repository.
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
outcome-utils-4.20.9.tar.gz
(17.0 kB
view details)
Built Distribution
File details
Details for the file outcome-utils-4.20.9.tar.gz
.
File metadata
- Download URL: outcome-utils-4.20.9.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.4.0-1032-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 962dc4f80b34cf2fd89b3f582171b328cb1ce83bb0803bfec7f377c520d13e1b |
|
MD5 | a42e99902538dd8379922e7b58e9be96 |
|
BLAKE2b-256 | e95dea08ef7306fc96cecada4243d612020b2b043fc498d66d00fa22b949a83d |
File details
Details for the file outcome_utils-4.20.9-py3-none-any.whl
.
File metadata
- Download URL: outcome_utils-4.20.9-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.4.0-1032-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fb6faf6788b53b554fce40dc453e7ffe0f1a6b380de2977e853d65618b3e61f |
|
MD5 | e3ec5fa74eba0b3e1011c4d6a5867411 |
|
BLAKE2b-256 | 3d0643cc62a9b9f35c5bfbc3bbab3df13fbd4ef05c36112e86b73168f7f759fb |