├── .gitignore ├── .travis.yml ├── Makefile ├── README.md ├── requirements.txt ├── serialized_redis └── __init__.py ├── setup.cfg ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | build/ 3 | dist/ 4 | dump.rdb 5 | *.egg-info 6 | .pypirc 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvandroLG/serialized-redis/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvandroLG/serialized-redis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvandroLG/serialized-redis/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | redis==4.4.4 2 | pep8==1.5.7 3 | -------------------------------------------------------------------------------- /serialized_redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvandroLG/serialized-redis/HEAD/serialized_redis/__init__.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvandroLG/serialized-redis/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvandroLG/serialized-redis/HEAD/test.py --------------------------------------------------------------------------------