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.4.tar.gz
(17.0 kB
view details)
Built Distribution
File details
Details for the file outcome-utils-4.20.4.tar.gz
.
File metadata
- Download URL: outcome-utils-4.20.4.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 | baf0b6e586f96dd2af9b5a0d02e2840a8f7e0a08441090154221e8d036d153cd |
|
MD5 | c1dad21afb17260e1dd7d91f070c20b9 |
|
BLAKE2b-256 | 9a1ac4ebf73318d4fc27c1168941708a7b6ecdebe08a9861924e226cad51641e |
File details
Details for the file outcome_utils-4.20.4-py3-none-any.whl
.
File metadata
- Download URL: outcome_utils-4.20.4-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 | 01dd2542f54c3529965bc3fbe41086811a8b9d1188a86835189085e886c4f816 |
|
MD5 | 74528ca218f1831c64d3a804b0656931 |
|
BLAKE2b-256 | adefd34df0f537852cebebd51ab662affd301c1254855ea238bbbc5b827f4b94 |