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.18.2.tar.gz
(15.9 kB
view details)
Built Distribution
File details
Details for the file outcome-utils-4.18.2.tar.gz
.
File metadata
- Download URL: outcome-utils-4.18.2.tar.gz
- Upload date:
- Size: 15.9 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 | 6b16b28ab30af2c1f94f712960224c32f8c097ec17d4c8fcb9d19f03865d78f5 |
|
MD5 | 8b713f261a08a2bc0ce5e60d4626fa16 |
|
BLAKE2b-256 | c181b896346ef03ed8b8bee2fcdeb18aec837ebe8762646c3ada9ca4e65a03ea |
File details
Details for the file outcome_utils-4.18.2-py3-none-any.whl
.
File metadata
- Download URL: outcome_utils-4.18.2-py3-none-any.whl
- Upload date:
- Size: 19.1 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 | a9250400495fa46c8c18e8e4ebf01436d0c84d131b9b66e367a2dc65e1a38088 |
|
MD5 | c18cec5b0a860c750bbf495803d4586d |
|
BLAKE2b-256 | fc059954d82fcede9c93e1994121687bd93d14d03f29c362aaaef4998af98d19 |