Metadata-Version: 2.1
Name: cachedict
Version: 0.0.5.1
Summary: Python cache dict.
Home-page: https://github.com/ChenyangGao/python-modules/tree/main/cachedict
License: MIT
Keywords: cache,dict
Author: ChenyangGao
Author-email: wosiwujm@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: python-undefined (>=0.0.3)
Project-URL: Repository, https://github.com/ChenyangGao/python-modules/tree/main/cachedict
Description-Content-Type: text/markdown

# Python cache dict.

## Installation

You can install via [pypi](https://pypi.org/project/cachedict/)

```console
pip install -U cachedict
```

## Usage

```python
import cachedict
```

## Reference

- [cache replacement policies](https://en.wikipedia.org/wiki/Cache_replacement_policies)
- [Caching in Python Using the LRU Cache Strategy](https://realpython.com/lru-cache-python/)
- [Memoize](https://wiki.python.org/moin/PythonDecoratorLibrary#Memoize)
- [functools.cache](https://docs.python.org/3/library/functools.html#functools.cache)
- [cachetools](https://cachetools.readthedocs.io/en/latest/)
- [cacheout](https://cacheout.readthedocs.io/en/latest/)
- [diskcache](https://grantjenks.com/docs/diskcache/)


