├── .gitignore ├── HACKING ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.rst ├── docs ├── Makefile ├── _themes │ ├── .gitignore │ ├── LICENSE │ ├── README.rst │ ├── flask_theme_support.py │ ├── kr │ │ ├── layout.html │ │ ├── relations.html │ │ ├── static │ │ │ ├── flasky.css_t │ │ │ └── small_flask.css │ │ └── theme.conf │ └── kr_small │ │ ├── layout.html │ │ ├── static │ │ └── flasky.css_t │ │ └── theme.conf ├── conf.py ├── index.rst └── make.bat ├── redi ├── __init__.py ├── config.py ├── core.py ├── db.py ├── models.py ├── packages │ ├── __init__.py │ └── jsonpickle │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── handlers.py │ │ ├── pickler.py │ │ ├── tags.py │ │ ├── unpickler.py │ │ └── util.py └── utils.py ├── reqs.txt ├── setup.py ├── test_redi.py └── toy.py /.gitignore: -------------------------------------------------------------------------------- 1 | MANIFEST 2 | .idea/ 3 | -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/HACKING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_themes/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /docs/_themes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/LICENSE -------------------------------------------------------------------------------- /docs/_themes/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/README.rst -------------------------------------------------------------------------------- /docs/_themes/flask_theme_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/flask_theme_support.py -------------------------------------------------------------------------------- /docs/_themes/kr/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr/layout.html -------------------------------------------------------------------------------- /docs/_themes/kr/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr/relations.html -------------------------------------------------------------------------------- /docs/_themes/kr/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr/static/flasky.css_t -------------------------------------------------------------------------------- /docs/_themes/kr/static/small_flask.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr/static/small_flask.css -------------------------------------------------------------------------------- /docs/_themes/kr/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr/theme.conf -------------------------------------------------------------------------------- /docs/_themes/kr_small/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr_small/layout.html -------------------------------------------------------------------------------- /docs/_themes/kr_small/static/flasky.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr_small/static/flasky.css_t -------------------------------------------------------------------------------- /docs/_themes/kr_small/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/_themes/kr_small/theme.conf -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/docs/make.bat -------------------------------------------------------------------------------- /redi/__init__.py: -------------------------------------------------------------------------------- 1 | from core import * 2 | -------------------------------------------------------------------------------- /redi/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/config.py -------------------------------------------------------------------------------- /redi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/core.py -------------------------------------------------------------------------------- /redi/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/db.py -------------------------------------------------------------------------------- /redi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/models.py -------------------------------------------------------------------------------- /redi/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redi/packages/jsonpickle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/__init__.py -------------------------------------------------------------------------------- /redi/packages/jsonpickle/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/compat.py -------------------------------------------------------------------------------- /redi/packages/jsonpickle/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/handlers.py -------------------------------------------------------------------------------- /redi/packages/jsonpickle/pickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/pickler.py -------------------------------------------------------------------------------- /redi/packages/jsonpickle/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/tags.py -------------------------------------------------------------------------------- /redi/packages/jsonpickle/unpickler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/unpickler.py -------------------------------------------------------------------------------- /redi/packages/jsonpickle/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/packages/jsonpickle/util.py -------------------------------------------------------------------------------- /redi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/redi/utils.py -------------------------------------------------------------------------------- /reqs.txt: -------------------------------------------------------------------------------- 1 | redis-py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/setup.py -------------------------------------------------------------------------------- /test_redi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/test_redi.py -------------------------------------------------------------------------------- /toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/redi/HEAD/toy.py --------------------------------------------------------------------------------