├── .cookiecutterrc ├── .coveragerc ├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── ci ├── bootstrap.py ├── requirements.txt └── templates │ └── .travis.yml ├── docs ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── installation.rst ├── readme.rst ├── reference │ ├── index.rst │ └── prefetch.rst ├── requirements.txt ├── spelling_wordlist.txt └── usage.rst ├── setup.cfg ├── setup.py ├── src └── prefetch.py ├── tbump.toml ├── tests ├── test_app │ ├── __init__.py │ ├── models.py │ └── tests.py └── test_project │ ├── __init__.py │ └── settings.py └── tox.ini /.cookiecutterrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.cookiecutterrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/README.rst -------------------------------------------------------------------------------- /ci/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/ci/bootstrap.py -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/ci/requirements.txt -------------------------------------------------------------------------------- /ci/templates/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/ci/templates/.travis.yml -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/prefetch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/reference/prefetch.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/spelling_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/spelling_wordlist.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/setup.py -------------------------------------------------------------------------------- /src/prefetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/src/prefetch.py -------------------------------------------------------------------------------- /tbump.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/tbump.toml -------------------------------------------------------------------------------- /tests/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/tests/test_app/models.py -------------------------------------------------------------------------------- /tests/test_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/tests/test_app/tests.py -------------------------------------------------------------------------------- /tests/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/tests/test_project/settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionelmc/django-prefetch/HEAD/tox.ini --------------------------------------------------------------------------------