Syntactic cached property generator for classes.
Project description
Syntactic Cache
Syntactic Cache is a Python library that allows you to automatically create cached properties for methods in your classes, using the syntax of the methods to determine which methods should be cached.
I.e, methods with the get_ prefix will have a cached property created for them using the method name without the prefix, this allows for easy refactoring of existing code adding cached properties of functions 'for free'. The cache is a simple memory cache linked to each instance of the class.
Installation
You can install Syntactic Cache using pip.
pip install syntactic-cache
Usage
Here's a simple example of how to use the @make_cached_properties decorator.
from syntactic_cache import do_not_make_cached_property, make_cached_properties
@make_cached_properties
class MyClass:
def __init__(self, value):
self.value = value
def get_power(self, exponent):
return self.value ** exponent
def get_square(self):
return self.get_power(2)
@do_not_make_cached_property
def get_cube(self):
return self.get_power(3)
def is_even(self):
return self.value % 2 == 0
instance = MyClass(3)
print(instance.get_square()) # 9, does not use the cache,
print(instance.get_cube()) # 27, does not use the cache.
print(instance.square) # 9, sets and uses the cache.
print(instance.cube) # Raises AttributeError, as making cached properties is disabled.
print(instance.power) # Raises AttributeError, as will not make cached properties for methods with arguments.
print(instance.is_even()) # False, does not use the cache.
print(instance.even) # False, sets and uses the cache.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file syntactic_cache-1.0.2.tar.gz.
File metadata
- Download URL: syntactic_cache-1.0.2.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b250b4d25f5b4146920e592d8a83edf4fdd310851a25e2b158fba099170044a8
|
|
| MD5 |
abbb72abd3936c33fbdf56f4b49d33d0
|
|
| BLAKE2b-256 |
9c2888f30bf61fcf9263400383fc93cf50f5fea270b20e7547a1a3a874275009
|
File details
Details for the file syntactic_cache-1.0.2-py3-none-any.whl.
File metadata
- Download URL: syntactic_cache-1.0.2-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20badb466902b5d57271265a16a13356565d603c00bc9fa551a456f73785c3a4
|
|
| MD5 |
c6b0d8d54fa0d0bebc4ccc7a34dc6f69
|
|
| BLAKE2b-256 |
0832d7c1f473ad3aace9731055fba5f38300dbf39c69bb0a422f239e662d5494
|