Memoization support.
Project description
memoir
In what follows
pythonis an alias forpython3.5or any later version (python3.6and so on),pypyis an alias forpypy3.5or any later version (pypy3.6and so on).
Installation
Install the latest pip & setuptools packages versions:
- with
CPythonpython -m pip install --upgrade pip setuptools
- with
PyPypypy -m pip install --upgrade pip setuptools
User
Download and install the latest stable version from PyPI repository:
- with
CPythonpython -m pip install --upgrade memoir
- with
PyPypypy -m pip install --upgrade memoir
Developer
Download the latest version from GitHub repository
git clone https://github.com/lycantropos/memoir.git
cd memoir
Install:
- with
CPythonpython setup.py install
- with
PyPypypy setup.py install
Usage
Let's suppose we are defining a class
with expensive read-only property
which can be calculated once and reused afterwards.
Common way of solving this is by introducing private'ish attribute like
>>> class Example:
... @property
... def expensive_property(self):
... try:
... result = self._expensive_property
... except AttributeError:
... result = do_expensive_calculations(...)
... self._expensive_property = result
... return result
this works fine, but each such property
- introduces an extra attribute,
- requires a lot of boilerplate code.
If we have
- weakly-referencable
(which is by default if not suppressed explicitly,
e.g. by using
__slots__class variable), - hashable
class we can implement it like
>>> from memoir import cached
>>> class Example:
... @cached.property_
... def expensive_property(self):
... return do_expensive_calculations(...)
Development
Bumping version
Preparation
Install bump2version.
Pre-release
Choose which version number category to bump following semver specification.
Test bumping version
bump2version --dry-run --verbose $CATEGORY
where $CATEGORY is the target version number category name, possible
values are patch/minor/major.
Bump version
bump2version --verbose $CATEGORY
This will set version to major.minor.patch-alpha.
Release
Test bumping version
bump2version --dry-run --verbose --tag release
Bump version
bump2version --verbose --tag release
This will set version to major.minor.patch and add Git tag.
Notes
To avoid inconsistency between branches and pull requests,
bumping version should be merged into master branch as separate pull
request.
Running tests
Plain:
- with
CPythonpython setup.py test
- with
PyPypypy setup.py test
Inside Docker container:
- with
CPythondocker-compose --file docker-compose.cpython.yml up
- with
PyPydocker-compose --file docker-compose.pypy.yml up
Bash script (e.g. can be used in Git hooks):
-
with
CPython./run-tests.sh
or
./run-tests.sh cpython -
with
PyPy./run-tests.sh pypy
PowerShell script (e.g. can be used in Git hooks):
- with
CPython.\run-tests.ps1
or.\run-tests.ps1 cpython
- with
PyPy.\run-tests.ps1 pypy
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 memoir-0.0.3.tar.gz.
File metadata
- Download URL: memoir-0.0.3.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f7fc401da6575f8f03ef7f7147bdecf969499aa41a3532c28cace8fe7237c3d
|
|
| MD5 |
301a78ddad53b3bf22b0e6fbee15ba1c
|
|
| BLAKE2b-256 |
36e25ae0ce6ebb39ca46c6a078820fad82eb8922e11ae19aefecf1c5a09a8f97
|
File details
Details for the file memoir-0.0.3-py3-none-any.whl.
File metadata
- Download URL: memoir-0.0.3-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24b9038d29cab4a17ef3ec495932f321e76b6cf425eca1d7518dc8af7cd82d37
|
|
| MD5 |
64a64852a9b42beae0fc3feb5ae96a37
|
|
| BLAKE2b-256 |
9b2a2a97c4c97c28058ef7cb8cc0894dd40ef3a69b1d2c5a0c2fc94e6db83ec7
|