├── .flake8 ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── Pipfile ├── Pipfile.lock ├── README.rst ├── anon ├── __init__.py ├── base.py ├── compat.py └── utils.py ├── django-anon-recording.gif ├── docs ├── Makefile ├── changelog.rst ├── conf.py ├── contributing.rst ├── index.rst ├── introduction.rst ├── reference.rst └── usage.rst ├── icon.svg ├── pyproject.toml ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── models.py ├── requirements.txt ├── settings.py ├── test_base.py ├── test_compat.py └── test_utils.py └── tox.ini /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/_build 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/README.rst -------------------------------------------------------------------------------- /anon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/anon/__init__.py -------------------------------------------------------------------------------- /anon/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/anon/base.py -------------------------------------------------------------------------------- /anon/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/anon/compat.py -------------------------------------------------------------------------------- /anon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/anon/utils.py -------------------------------------------------------------------------------- /django-anon-recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/django-anon-recording.gif -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/icon.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tests/test_compat.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tesorio/django-anon/HEAD/tox.ini --------------------------------------------------------------------------------