cached_property() - computed once per instance, cached as attribute
Project description
What
Python 3.8 adds great descriptor to functools: cached_property. Technically all required APIs was available since python 3.6, but it is what it is.
This package is a backport of this functionality for python 3.6 and 3.7.
How to use
from backports.cached_property import cached_property
And then python 3.8 documentation will work (because code is minimally changed):
Transform a method of a class into a property whose value is computed once and then cached as a normal attribute for the life of the instance. Similar to property, with the addition of caching. Useful for expensive computed properties of instances that are otherwise effectively immutable.
Example:
class DataSet: def __init__(self, sequence_of_numbers): self._data = sequence_of_numbers @cached_property def stdev(self): return statistics.stdev(self._data) @cached_property def variance(self): return statistics.variance(self._data)
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
Hashes for backports.cached-property-1.0.0.post1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7329ba527bcf530660a929657f60e860f371f3cbe2d5e7cec5115425a11ca11e |
|
MD5 | ab5af7b40a009ca2b362abd7087e218f |
|
BLAKE2b-256 | 36a5cc92f218972bd825ad2f84ac5f2302e831aba5c6f88cd46706882c94a186 |
Hashes for backports.cached_property-1.0.0.post1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c9cde438e6cfa97b403a072668c5bf0b025b914f873ace91dda2815f687a5e2 |
|
MD5 | 478ecb8e9c4230da0526dc364354e2a8 |
|
BLAKE2b-256 | f9357b46ea931fe3625f231a832cfe574ed80bf0b6e584c723898ac3e829e682 |