Last updated:
0 purchases
pcache 0.0.3
Simple Persistent Cache
pcache is simple Python 3 implementation of persistent cache.
Installation
To install pcache, simply run
pip install pcache
Usage
>>> from pcache import PersistentCache
>>> cache = PersistentCache(filename="cachefile")
>>> cache["objId"] = "7sdjhds8"
>>> cache["objId"]
'7sdjhds8'
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.