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.21.0.tar.gz
(17.2 kB
view details)
Built Distribution
File details
Details for the file outcome-utils-4.21.0.tar.gz
.
File metadata
- Download URL: outcome-utils-4.21.0.tar.gz
- Upload date:
- Size: 17.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.7 Linux/5.4.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4549a08571667b4c8ef89caef0799a51f1b0250c5eda3267e3843877205aed9a |
|
MD5 | f5d1b4d0595529c953dd7048e43c3982 |
|
BLAKE2b-256 | f3e2565e7ec8053dfc50266ac26d0a99cfd884ce447cb68e59fd6c68446a527f |
File details
Details for the file outcome_utils-4.21.0-py3-none-any.whl
.
File metadata
- Download URL: outcome_utils-4.21.0-py3-none-any.whl
- Upload date:
- Size: 20.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.10 CPython/3.8.7 Linux/5.4.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61b547d3eb7b703f4b7f804de9b3abd833b728996a9e94a8ef02237a1149cc29 |
|
MD5 | a25c0645ab98c06309259565888ca00e |
|
BLAKE2b-256 | e31b3cb83c1b4001302da2932d1d74aeba0c59485b4d62d1027ba61caed253eb |