This is an extension of the DiskCache package.
It extends the functionality of the original disk cache package by allowing users to store objects as different file types within the cache.
This might be useful is one interested in keeping a human interpretable file structure within their file cache.
Clone the repository from github and install it from source using poetry.
poetry install
The package follows semantic versioning. To create a new versioned release of File Disk Cache
:
-
Update the version in the pyproject file (e.g. for a minor bump update the second number).
-
Once the change has been merged, switch to the
main
locally and create a new git tag. (Make sure the tag is annotated) e.g.
git tag -a v1.1.3 -m "release notes here"
- Push the tag to GitHub
git push origin --tags
To test this repository, call:
make test
This action is defined in the Makefile