gitextract_do_9w9k_/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── codeql-analysis.yml │ ├── docs.yml │ ├── lint.yml │ ├── publish-to-live-pypi.yml │ ├── publish-to-test-pypi.yml │ └── test.yml ├── .gitignore ├── .pep8 ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_bleach/ │ ├── __init__.py │ ├── forms.py │ ├── models.py │ ├── templatetags/ │ │ ├── __init__.py │ │ └── bleach_tags.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_forms.py │ │ ├── test_modelformfield.py │ │ ├── test_models.py │ │ ├── test_settings.py │ │ └── test_templatetags.py │ └── utils.py ├── docs/ │ ├── Makefile │ ├── _static/ │ │ └── .do-not-delete │ ├── conf.py │ ├── index.rst │ ├── requirements.in │ ├── requirements.txt │ ├── settings.rst │ ├── setup.rst │ └── usage.rst ├── pyproject.toml ├── requirements/ │ ├── compile.py │ ├── py310-django32.txt │ ├── py310-django40.txt │ ├── py310-django41.txt │ ├── py310-django42.txt │ ├── py311-django41.txt │ ├── py311-django42.txt │ ├── py312-django42.txt │ ├── py38-django32.txt │ ├── py38-django40.txt │ ├── py38-django41.txt │ ├── py38-django42.txt │ ├── py39-django32.txt │ ├── py39-django40.txt │ ├── py39-django41.txt │ ├── py39-django42.txt │ └── requirements.in ├── requirements.in ├── requirements.txt ├── setup.cfg ├── setup.py ├── testproject/ │ ├── __init__.py │ ├── constants.py │ ├── forms.py │ ├── manage.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── requirements.in │ ├── requirements.txt │ ├── settings.py │ ├── templates/ │ │ ├── home.html │ │ └── model_form.html │ ├── urls.py │ └── views.py └── tox.ini