├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── conf.py └── index.rst ├── redisco ├── __init__.py ├── containers.py └── models │ ├── __init__.py │ ├── attributes.py │ ├── base.py │ ├── exceptions.py │ ├── key.py │ ├── managers.py │ ├── modelset.py │ ├── utils.py │ └── validation.py ├── setup.py └── tests ├── __init__.py ├── bm_profile.py ├── bm_write.py ├── connection.py ├── containers.py └── models.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/docs/index.rst -------------------------------------------------------------------------------- /redisco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/__init__.py -------------------------------------------------------------------------------- /redisco/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/containers.py -------------------------------------------------------------------------------- /redisco/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/__init__.py -------------------------------------------------------------------------------- /redisco/models/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/attributes.py -------------------------------------------------------------------------------- /redisco/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/base.py -------------------------------------------------------------------------------- /redisco/models/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/exceptions.py -------------------------------------------------------------------------------- /redisco/models/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/key.py -------------------------------------------------------------------------------- /redisco/models/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/managers.py -------------------------------------------------------------------------------- /redisco/models/modelset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/modelset.py -------------------------------------------------------------------------------- /redisco/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/redisco/models/utils.py -------------------------------------------------------------------------------- /redisco/models/validation.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/bm_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/tests/bm_profile.py -------------------------------------------------------------------------------- /tests/bm_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/tests/bm_write.py -------------------------------------------------------------------------------- /tests/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/tests/connection.py -------------------------------------------------------------------------------- /tests/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/tests/containers.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamteem/redisco/HEAD/tests/models.py --------------------------------------------------------------------------------