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.12.7.tar.gz
(13.6 kB
view details)
Built Distribution
File details
Details for the file outcome-utils-4.12.7.tar.gz
.
File metadata
- Download URL: outcome-utils-4.12.7.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d42fbec1e3bbe6672236b971845d615b17b3153af2c757716bc0dd5a89ee20c8 |
|
MD5 | b0da2d048bca4a2a95818993b93668d8 |
|
BLAKE2b-256 | 685707d5f995c98417b56d58db88374ba34e867a90eb0b9e0f99c3956391ee96 |
File details
Details for the file outcome_utils-4.12.7-py3-none-any.whl
.
File metadata
- Download URL: outcome_utils-4.12.7-py3-none-any.whl
- Upload date:
- Size: 16.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.6 Linux/5.4.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4acadc70e988e6adbccc99834bf8b76983ee7db28c06ba805a7b989b61467eb1 |
|
MD5 | 7ed4b9301d96bc2eba1d1609984327d0 |
|
BLAKE2b-256 | 4b70be07de65b2f453c5437d01ae6a73a387d11087aba2c2ca9cd8bd2e2988d5 |