├── .bumpversion.cfg ├── .editorconfig ├── .gitignore ├── README.md ├── README.rst ├── check.sh ├── detect ├── __init__.py └── middleware.py ├── isort.sh ├── pep8.sh ├── setup.cfg └── setup.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/README.rst -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/check.sh -------------------------------------------------------------------------------- /detect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detect/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/detect/middleware.py -------------------------------------------------------------------------------- /isort.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | isort . 4 | -------------------------------------------------------------------------------- /pep8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/pep8.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-xxx/django-detect/HEAD/setup.py --------------------------------------------------------------------------------