memoprop

Basic memoized properties for Python.


Keywords
decorator, property, memoized
License
MIT
Install
pip install memoprop==0.2.0

Documentation

memoprop

Basic memoized properties (properties which cache the result of their getter) for Python.

Quickstart/Installation

pip install memoprop

Developing

Create the conda environment:

conda env create -f envs/dev.yml
conda activate memoprop-dev

Format code by running the pre-commit tasks:

pre-commit run --all

Run the tests with pytest:

pytest