├── .editorconfig ├── .gitignore ├── .travis.yml ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── modeldict ├── __init__.py ├── base.py ├── models.py └── redis.py ├── pytest.ini ├── requirements.in ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── settings.py ├── testapp │ ├── __init__.py │ ├── models.py │ ├── test_base.py │ └── test_modeldict.py └── urls.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/README.rst -------------------------------------------------------------------------------- /modeldict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/modeldict/__init__.py -------------------------------------------------------------------------------- /modeldict/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/modeldict/base.py -------------------------------------------------------------------------------- /modeldict/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/modeldict/models.py -------------------------------------------------------------------------------- /modeldict/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/modeldict/redis.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/tests/testapp/models.py -------------------------------------------------------------------------------- /tests/testapp/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/tests/testapp/test_base.py -------------------------------------------------------------------------------- /tests/testapp/test_modeldict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/tests/testapp/test_modeldict.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-modeldict/HEAD/tox.ini --------------------------------------------------------------------------------