├── .gitignore ├── .idea └── vcs.xml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── README_CH.rst ├── VERSION ├── common_cache ├── __init__.py ├── cleanup.py ├── eviction.py └── utils.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/README.rst -------------------------------------------------------------------------------- /README_CH.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/README_CH.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1 -------------------------------------------------------------------------------- /common_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/common_cache/__init__.py -------------------------------------------------------------------------------- /common_cache/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/common_cache/cleanup.py -------------------------------------------------------------------------------- /common_cache/eviction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/common_cache/eviction.py -------------------------------------------------------------------------------- /common_cache/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/common_cache/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SylvanasSun/python-common-cache/HEAD/setup.py --------------------------------------------------------------------------------