├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── redis_cache ├── __init__.py ├── rediscache.py └── test_rediscache.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.idea 3 | .DS_Store 4 | *.rdb 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashSinha1996/redis-simple-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashSinha1996/redis-simple-cache/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashSinha1996/redis-simple-cache/HEAD/README.md -------------------------------------------------------------------------------- /redis_cache/__init__.py: -------------------------------------------------------------------------------- 1 | from .rediscache import * -------------------------------------------------------------------------------- /redis_cache/rediscache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashSinha1996/redis-simple-cache/HEAD/redis_cache/rediscache.py -------------------------------------------------------------------------------- /redis_cache/test_rediscache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashSinha1996/redis-simple-cache/HEAD/redis_cache/test_rediscache.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | redis>=2.7.1 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YashSinha1996/redis-simple-cache/HEAD/setup.py --------------------------------------------------------------------------------