├── .editorconfig ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Procfile ├── README.rst ├── app.json ├── docs ├── Makefile ├── _static │ └── .keep ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── project.rst └── usage.rst ├── drf_cached_instances ├── __init__.py ├── cache.py ├── compat.py ├── mixins.py └── models.py ├── manage.py ├── requirements.txt ├── sample_poll_app ├── __init__.py ├── admin.py ├── cache.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tasks.py ├── templates │ └── sample_poll_app │ │ └── home.html ├── urls.py └── viewsets.py ├── sample_site ├── __init__.py ├── celery.py ├── runtests.py ├── settings.py ├── urls.py └── wsgi.py ├── setup.cfg ├── setup.py ├── static └── .keep ├── tests ├── __init__.py ├── test_cache.py ├── test_mixins.py └── test_models.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/README.rst -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/app.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/project.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /drf_cached_instances/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/drf_cached_instances/__init__.py -------------------------------------------------------------------------------- /drf_cached_instances/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/drf_cached_instances/cache.py -------------------------------------------------------------------------------- /drf_cached_instances/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/drf_cached_instances/compat.py -------------------------------------------------------------------------------- /drf_cached_instances/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/drf_cached_instances/mixins.py -------------------------------------------------------------------------------- /drf_cached_instances/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/drf_cached_instances/models.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_poll_app/__init__.py: -------------------------------------------------------------------------------- 1 | """Sample app to demonstrate usage of drf_cached_instances.""" 2 | -------------------------------------------------------------------------------- /sample_poll_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/admin.py -------------------------------------------------------------------------------- /sample_poll_app/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/cache.py -------------------------------------------------------------------------------- /sample_poll_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /sample_poll_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | """Database migrations for the sample app.""" 2 | -------------------------------------------------------------------------------- /sample_poll_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/models.py -------------------------------------------------------------------------------- /sample_poll_app/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/serializers.py -------------------------------------------------------------------------------- /sample_poll_app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/tasks.py -------------------------------------------------------------------------------- /sample_poll_app/templates/sample_poll_app/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/templates/sample_poll_app/home.html -------------------------------------------------------------------------------- /sample_poll_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/urls.py -------------------------------------------------------------------------------- /sample_poll_app/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_poll_app/viewsets.py -------------------------------------------------------------------------------- /sample_site/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_site/__init__.py -------------------------------------------------------------------------------- /sample_site/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_site/celery.py -------------------------------------------------------------------------------- /sample_site/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_site/runtests.py -------------------------------------------------------------------------------- /sample_site/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_site/settings.py -------------------------------------------------------------------------------- /sample_site/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_site/urls.py -------------------------------------------------------------------------------- /sample_site/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/sample_site/wsgi.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/setup.py -------------------------------------------------------------------------------- /static/.keep: -------------------------------------------------------------------------------- 1 | Generated static files appear here -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Tests for drf_cached_instances.""" 2 | -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/tests/test_mixins.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhitlock/drf-cached-instances/HEAD/tox.ini --------------------------------------------------------------------------------