A decorator for caching computed properties in classes. like Vue's Computed-Properties
Project description
computed-cached-property
A decorator for caching computed properties in classes. like Vue's Computed-Properties
install
pip install computed-cached-property
example
from computed_cached_property import computed_cached_property
from dataclasses import dataclass
@dataclass
class A:
v1: int = 1
v2: str = 'fuck'
v3: bool = False
@property
@computed_cached_property
def v4(self):
print('run code in v4 function')
return f'v1:{self.v1}, v2:{self.v2}, v3:{self.v3}'
@property
@computed_cached_property(typed=Ture)
# same as @functools.lru_cache(maxsize=1, typed=Ture)
def v5(self):
print('run code in v4 function')
return f'v1:{self.v1}, v2:{self.v2}, v3:{self.v3}'
a1 = A(v1=99)
print(a1.v4)
print(a1.v4)
a1.v2 = 'xxoo'
print(a1.v4)
# output
# run code in v4 function
# v1:99, v2:fuck, v3:False
# v1:99, v2:fuck, v3:False
# run code in v4 function
# v1:99, v2:xxoo, v3:False
Hint
Not recommended for use in a production environment
License
MIT
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
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 computed-cached-property-0.0.3.tar.gz.
File metadata
- Download URL: computed-cached-property-0.0.3.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2fa1d726669bff0f28ecc0c8437d36df43f59d12cd9e2ecd5c7865f1ea6a06d
|
|
| MD5 |
a9f0c2b7fa954e6509493bb2ae6ded59
|
|
| BLAKE2b-256 |
bf9f9e2b8ef3705db09b7e54023689995d98f8d85bf0d703f109104d9b095f88
|
File details
Details for the file computed_cached_property-0.0.3-py3-none-any.whl.
File metadata
- Download URL: computed_cached_property-0.0.3-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dc84a3cd2eee906f6e750b00e47d57daf3512f4322bd8bad80054b96a1c890f
|
|
| MD5 |
79327349df40a224ab033a07c22bd45b
|
|
| BLAKE2b-256 |
6f6ad1104cf406331a4526893a998704936a340d8c65fadbee63b6893acc8897
|