[
  {
    "path": ".editorconfig",
    "content": "# http://editorconfig.org\n\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\nindent_style = space\nindent_size = 4\n\n[*.py]\nmax_line_length = 80\n\n[*.toml]\nindent_size = 2\n\n[*.yml]\nindent_size = 2\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: ''\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n- package-ecosystem: github-actions\n  directory: \"/\"\n  commit-message:\n      prefix: \"ci:\"\n      include: \"scope\"\n  schedule:\n    interval: weekly\n- package-ecosystem: pip\n  directory: \"/\"\n  schedule:\n    interval: weekly\n  groups:\n    python-packages:\n      patterns:\n        - \"*\"\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "# Description\n\nDescribe:\n\n* Content of the pull request\n* Feature added / Problem fixed\n\n## References\n\nProvide any github issue fixed (as in ``Fix #XYZ``)\n\n# Checklist\n\n* [ ] I have ran `tox` to ensure tests pass\n* [ ] Usage documentation added in case of new features\n* [ ] README & CHANGELOG updated\n* [ ] Tests added / I have not lowered coverage from 100%\n"
  },
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "content": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\nname: \"CodeQL\"\n\non:\n  push:\n    branches: [master]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [master]\n  schedule:\n    - cron: '0 18 * * 2'\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n\n    strategy:\n      fail-fast: false\n      matrix:\n        # Override automatic language detection by changing the below list\n        # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']\n        language: ['python']\n        # Learn more...\n        # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v3\n      with:\n        # We must fetch at least the immediate parents so that if this is\n        # a pull request then we can checkout the head.\n        fetch-depth: 2\n\n    # If this run was triggered by a pull request event, then checkout\n    # the head of the pull request instead of the merge commit.\n    - run: git checkout HEAD^2\n      if: ${{ github.event_name == 'pull_request' }}\n\n    # Initializes the CodeQL tools for scanning.\n    - name: Initialize CodeQL\n      uses: github/codeql-action/init@v3\n      with:\n        languages: ${{ matrix.language }}\n        # If you wish to specify custom queries, you can do so here or in a config file.\n        # By default, queries listed here will override any specified in a config file. \n        # Prefix the list here with \"+\" to use these queries and those in the config file.\n        # queries: ./path/to/local/query, your-org/your-repo/queries@main\n\n    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).\n    # If this step fails, then you should remove it and run the build manually (see below)\n    - name: Autobuild\n      uses: github/codeql-action/autobuild@v3\n\n    # ℹ️ Command-line programs to run using the OS shell.\n    # 📚 https://git.io/JvXDl\n\n    # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines\n    #    and modify them (or add more) to build your code if your project\n    #    uses a compiled language\n\n    #- run: |\n    #   make bootstrap\n    #   make release\n\n    - name: Perform CodeQL Analysis\n      uses: github/codeql-action/analyze@v3\n"
  },
  {
    "path": ".github/workflows/docs.yml",
    "content": "name: Docs\n\non: [push, pull_request]\n\nconcurrency:\n  group: ${{ github.workflow }}-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  docs:\n    runs-on: ubuntu-latest\n    name: docs\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n      - name: Set up Python\n        uses: actions/setup-python@v5\n        with:\n          python-version: 3.11\n      - run: python -m pip install sphinx\n      - name: Build docs\n        run: |\n          cd docs\n          sphinx-build -W -b html -d _build/doctrees . _build/html\n"
  },
  {
    "path": ".github/workflows/lint.yml",
    "content": "name: Lint\n\non: [ push, pull_request ]\n\nconcurrency:\n  group: ${{ github.workflow }}-${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  ruff:\n    name: ruff\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n      - name: Set up Python\n        uses: actions/setup-python@v5\n        with:\n          python-version: \"3.11\"\n          cache: 'pip'\n      - run: |\n          python -m pip install --upgrade pip\n          pip install ruff\n      - name: Run Ruff\n        run: ruff django_bleach\n\n  codespell:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n      - name: Set up Python\n        uses: actions/setup-python@v5\n        with:\n          python-version: 3.11\n          cache: 'pip'\n      - run: python -m pip install codespell\n      - name: codespell\n        uses: codespell-project/actions-codespell@master\n"
  },
  {
    "path": ".github/workflows/publish-to-live-pypi.yml",
    "content": "name: Publish Python 🐍 distributions 📦 to pypi\n\non:\n  release:\n    types:\n      - published\n\njobs:\n  build-n-publish:\n    name: Build and publish Python 🐍 distributions 📦 to pypi\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - name: Set up Python 3.9\n      uses: actions/setup-python@v5\n      with:\n        python-version: 3.9\n\n    - name: Install pypa/build\n      run: >-\n        python -m\n        pip install\n        build\n        --user\n    - name: Build a binary wheel and a source tarball\n      run: >-\n        python -m\n        build\n        --sdist\n        --wheel\n        --outdir dist/\n        .\n\n    - name: Publish distribution 📦 to PyPI\n      if: startsWith(github.ref, 'refs/tags')\n      uses: pypa/gh-action-pypi-publish@master\n      with:\n        password: ${{ secrets.PYPI_API_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/publish-to-test-pypi.yml",
    "content": "name: Publish Python 🐍 distributions 📦 to TestPyPI\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  build-n-publish:\n    name: Build and publish Python 🐍 distributions 📦 to TestPyPI\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - name: Set up Python 3.9\n      uses: actions/setup-python@v5\n      with:\n        python-version: 3.9\n\n    - name: Install pypa/build\n      run: >-\n        python -m\n        pip install\n        build\n        --user\n    - name: Build a binary wheel and a source tarball\n      run: >-\n        python -m\n        build\n        --sdist\n        --wheel\n        --outdir dist/\n        .\n\n    - name: Publish distribution 📦 to Test PyPI\n      uses: pypa/gh-action-pypi-publish@master\n      with:\n        password: ${{ secrets.TEST_PYPI_API_TOKEN }}\n        repository_url: https://test.pypi.org/legacy/\n        skip_existing: true\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: Tests\n\non:\n  push:\n    branches:\n    - main\n  pull_request:\n\nconcurrency:\n  group: ${{ github.head_ref || github.run_id }}\n  cancel-in-progress: true\n\njobs:\n  unit-tests:\n    name: Python ${{ matrix.python-version }}\n    runs-on: ubuntu-22.04\n\n    strategy:\n      fail-fast: false\n      matrix:\n        python-version:\n        - 3.8\n        - 3.9\n        - '3.10'\n        - '3.11'\n        - '3.12'\n\n    steps:\n    - uses: actions/checkout@v3\n\n    - uses: actions/setup-python@v5\n      with:\n        python-version: ${{ matrix.python-version }}\n        allow-prereleases: true\n        cache: pip\n        cache-dependency-path: 'requirements/*.txt'\n\n    - name: Install dependencies\n      run: |\n        python -m pip install --upgrade pip setuptools wheel\n        python -m pip install --upgrade 'tox>=4.0.0rc3'\n\n    - name: Run tox targets for ${{ matrix.python-version }}\n      run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)\n\n    - name: Upload coverage data\n      uses: actions/upload-artifact@v3\n      with:\n        name: coverage-data\n        path: '.coverage.*'\n\n  coverage:\n    name: Coverage\n    runs-on: ubuntu-22.04\n    needs: unit-tests\n    steps:\n      - uses: actions/checkout@v3\n\n      - uses: actions/setup-python@v5\n        with:\n          python-version: '3.11'\n\n      - name: Install dependencies\n        run: python -m pip install --upgrade coverage[toml]\n\n      - name: Download data\n        uses: actions/download-artifact@v3\n        with:\n          name: coverage-data\n\n      - name: Fail if coverage is <100%\n        run: |\n          python -m coverage combine\n          python -m coverage html --skip-covered --skip-empty\n          python -m coverage report --fail-under=100\n\n      - name: Upload HTML report\n        if: ${{ failure() }}\n        uses: actions/upload-artifact@v3\n        with:\n          name: html-report\n          path: htmlcov\n\n  unit-tests-future-versions:\n    # Runs for all Django/Python versions which are not yet supported\n    runs-on: ubuntu-22.04\n    strategy:\n      fail-fast: false\n      matrix:\n        python-version: ['3.11', '3.12']\n        django-version: [\n          'https://github.com/django/django/archive/main.tar.gz'\n        ]\n\n    steps:\n    - uses: actions/checkout@v3\n    - name: Set up Python ${{ matrix.python-version }}\n      uses: actions/setup-python@v5\n      with:\n        allow-prereleases: true\n        cache: pip\n        cache-dependency-path: 'requirements/*.txt'\n        python-version: ${{ matrix.python-version }}\n    - name: Install dependencies\n      run: |\n        python -m pip install --upgrade pip setuptools wheel\n        python -m pip install --upgrade 'tox>=4.0.0rc3'\n\n    - name: Run tox targets for ${{ matrix.python-version }}\n      run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)\n"
  },
  {
    "path": ".gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n.hypothesis/\n.pytest_cache/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndjango-bleach.db\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n.python-version\n\n# celery beat schedule file\ncelerybeat-schedule\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# IDE\n.idea\n\n# OSX\n.DS_Store"
  },
  {
    "path": ".pep8",
    "content": "[flake8]\nignore = E501\nexclude = migrations,.venv_*,docs"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "ci:\n    autofix_commit_msg: |\n        ci: auto fixes from pre-commit hooks\n\n        for more information, see https://pre-commit.ci\n    autofix_prs: true\n    autoupdate_commit_msg: 'ci: pre-commit autoupdate'\n    autoupdate_schedule: monthly\n\nrepos:\n  - repo: https://github.com/asottile/pyupgrade\n    rev: v3.15.2\n    hooks:\n      - id: pyupgrade\n        args: [\"--py38-plus\"]\n\n  - repo: https://github.com/adamchainz/django-upgrade\n    rev: '1.16.0'\n    hooks:\n      - id: django-upgrade\n        args: [--target-version, \"3.2\"]\n\n  - repo: https://github.com/astral-sh/ruff-pre-commit\n    rev: \"v0.4.3\"\n    hooks:\n      - id: ruff\n        args: [--fix, --exit-non-zero-on-fix]\n\n  - repo: https://github.com/asottile/yesqa\n    rev: v1.5.0\n    hooks:\n      - id: yesqa\n\n  - repo: https://github.com/pre-commit/pre-commit-hooks\n    rev: v4.6.0\n    hooks:\n      - id: check-merge-conflict\n      - id: mixed-line-ending\n\n  - repo: https://github.com/psf/black\n    rev: 24.4.2\n    hooks:\n      - id: black\n        name: Black\n"
  },
  {
    "path": ".readthedocs.yaml",
    "content": "# Read the Docs configuration file\n# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details\nversion: 2\n\nbuild:\n  os: ubuntu-22.04\n  tools:\n    python: \"3.11\"\n\nsphinx:\n  configuration: docs/conf.py\n  fail_on_warning: false\n\nformats:\n  - epub\n  - pdf\n\npython:\n  install:\n    - requirements: docs/requirements.txt\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "Change Log\n==========\n\nThis document records all notable changes to [django-bleach](https://github.com/marksweb/django-bleach).\nThis project adheres to [Semantic Versioning](https://semver.org/).\n\n[unreleased](https://github.com/marksweb/django-bleach/compare/3.1.0...master) changes\n-------------------------------------------------------------------------------------\n\nVersion 3.1.0\n=============\n**05-08-2023**\n\n* Added support for django 4.2\n* Added support for python 3.12\n* Revamp package for easier maintenance\n\n\nVersion 3.0.1\n=============\n**11-10-2022**\n\n* Added support for django 4.1\n\nVersion 3.0.0\n=============\n**19-05-2022**\n\n* Bleach dependency is now at ``>=5,<6`` [#55](https://github.com/marksweb/django-bleach/pull/55) (Thanks [Laityned](https://github.com/Laityned))\n* Deprecate bleach's `allowed_styles` kwarg\n* Added support for bleach's `css_sanitizer` kwarg\n* Add isort and codespell to ci\n* Dropped support for python 3.6 and 3.7 as well as django 3.0 and 3.1\n* Renamed default branch from `master` to `main`. If you have the project locally, you can update using:\n\n```shell\ngit branch -m master main\ngit fetch origin\ngit branch -u origin/main main\ngit remote set-head origin -a\n```\n\nVersion 2.0.0\n=============\n###### 08-04-2022\n\n* cap bleach version at ``<5`` [#51](https://github.com/marksweb/django-bleach/issues/51)\n* drop support for python 3.6\n* drop support for django 3.0 and 3.1\n* added support for django 4\n\nVersion 1.0.0\n=============\n###### 13-11-2021\nGoing to 1.0 is long overdue, especially considering SemVer.\n* automated pypi releases via github actions\n* pre-commit hooks\n* python 3.10 support\n* docs syntax highlighting [#38](https://github.com/marksweb/django-bleach/pull/38)\n\nVersion 0.9.0\n=============\n###### 28-09-2021\n* Drop support for django <2.2\n* Added support for django 4.0\n\nVersion 0.8.0\n=============\n###### 18-09-2021\nThank you to [Mark Gregson](https://github.com/MrkGrgsn) for providing the changes in this release!\n*  Fix for [#28](https://github.com/marksweb/django-bleach/issues/28): Return ``empty_value`` for any empty input value\n*  Fix for [#27](https://github.com/marksweb/django-bleach/issues/27): Mark cleaned data as template safe\n*  Fix for [#25](https://github.com/marksweb/django-bleach/issues/25): Respect the ``form_class`` argument\n*  Fix custom widget tests [#34](https://github.com/marksweb/django-bleach/pulls/34)\n\nVersion 0.7.2\n=============\n###### 27-07-2021\n*  Fix for [#23](https://github.com/marksweb/django-bleach/issues/23): `kwargs` being lost in the default form field.\n\nVersion 0.7.1\n=============\n###### 23-07-2021\n*  Fix for [#21](https://github.com/marksweb/django-bleach/issues/21): default form field not respecting required fields.\n\nVersion 0.7.0\n=============\n###### 09-07-2021\n*  Default form field set to `forms.BleachField` for `models.BleachField` (Thanks [Alirezaja1384](https://github.com/Alirezaja1384))\n*  Introduced testing against Python 3.9\n\nVersion 0.6.1\n=============\n###### 07-11-2019\n*  Handle `None` as an input value of template tags (Thanks [pegler](https://github.com/pegler))\n\nVersion 0.6.0\n=============\n###### 18-10-2019\n*  Introduced testing against Python 3.8\n*  Drop support for Django <1.11\n*  Test coverage at 100%\n\nVersion 0.5.3\n=============\n###### 16-04-2019\n*  Fix for `BleachField` set to allow `blank` or `null`. (Thanks [denisroldan](https://github.com/denisroldan))\n\nVersion 0.5.2\n=============\n###### 15-03-2019\n*  Fix for `BleachField` receiving a `None` value. (Thanks [MrkGrgsn](https://github.com/MrkGrgsn))\n\nVersion 0.5.1\n=============\n###### 12-02-2019\n*  100% coverage achieved\n*  Changelog updated with `0.5.0` changes. (Thanks [dyve](https://github.com/dyve))\n\nVersion 0.5.0\n=============\n###### 02-02-2019\n*  Added support for bleach's `allowed_protocols` kwarg. (Thanks [blag](https://github.com/blag))\n*  Bleach dependency is now `>=1.5.0`\n\nVersion 0.4.1\n=============\n###### 24-01-2019\n*  Option to pass *allowed tags* to the `bleach` template filter added by [Rafał Selewońko](https://github.com/seler).\n*  Moved project to Github.\n\nVersion 0.4.0\n=============\n###### 18-12-2018\n*  Added support for django>=1.9\n*  Ensure that the `model_instance` field gets updated with the clean value\n\nVersion 0.3.0\n=============\n###### 20-09-2014\n*  The `BleachField` model field now does its own sanitisation,\n   and does *not* specify a default form field or widget.\n   Developers are expected to provide their own widget as needed.\n\nVersion 0.2.1\n=============\n###### 02-09-2014\n*  Make the package python3 compatible.\n\nVersion 0.2.0\n=============\n###### 14-02-2014\n*  Add `bleach_linkify` template filter from [whitehat2k13](https://bitbucket.org/%7B66836148-7eee-4894-acec-e073b30499ee%7D/)\n\nVersion 0.1.5\n=============\n###### 25-09-2013\n\nVersion 0.1.4\n=============\n###### 03-06-2013\n\nVersion 0.1.3\n=============\n###### 22-08-2012\n*  Add missing `templatetags` package, by using `find_packages()`\n*  Correct templatetag name: ``bleach.py`` -> ``bleach_tags.py``\n\nVersion 0.1.2\n=============\n###### 13-08-2012\n*  Fix south migration bug\n\nVersion 0.1.1\n=============\n###### 13-08-2012\n*  add south_triple_field for south integration\n*  clean up files to meet pep8 compliance\n\nVersion 0.1.0\n=============\n###### 13-08-2012\n*  Initial release\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2018 Mark Walker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."
  },
  {
    "path": "MANIFEST.in",
    "content": "include LICENSE\ninclude README.rst\ninclude CHANGELOG.md\ninclude docs/*.rst\nprune docs/_build\ngraft testproject\nglobal-exclude coverage.xml\nglobal-exclude .coverage\nrecursive-exclude * *.pyc __pycache__ .DS_Store\n"
  },
  {
    "path": "README.rst",
    "content": "django-bleach - Bleach and sanitise user HTML\n=============================================\n\n.. image:: https://readthedocs.org/projects/django-bleach/badge/?version=latest\n   :target: https://django-bleach.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\n.. image:: http://img.shields.io/pypi/v/django-bleach.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/django-bleach/\n    :alt: Latest Version\n\n.. image:: http://img.shields.io/pypi/l/django-bleach.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/django-bleach/\n    :alt: License\n\n.. image:: http://img.shields.io/pypi/dm/django-bleach.svg?style=flat-square\n    :target: https://pypi.python.org/pypi/django-bleach/\n    :alt: Downloads\n\n|\n\n.. image:: https://codecov.io/gh/marksweb/django-bleach/branch/master/graph/badge.svg\n  :target: https://codecov.io/gh/marksweb/django-bleach\n\n.. image:: https://api.codacy.com/project/badge/Grade/c34f923ab0a84a6f96728866c749d511\n   :alt: Codacy Badge\n   :target: https://app.codacy.com/app/marksweb/django-bleach?utm_source=github.com&utm_medium=referral&utm_content=marksweb/django-bleach&utm_campaign=Badge_Grade_Dashboard\n\n.. image:: https://results.pre-commit.ci/badge/github/marksweb/django-bleach/master.svg\n   :target: https://results.pre-commit.ci/latest/github/marksweb/django-bleach/master\n   :alt: pre-commit.ci status\n\n.. image:: https://img.shields.io/lgtm/grade/python/g/marksweb/django-bleach.svg?logo=lgtm&logoWidth=18\n   :target: https://lgtm.com/projects/g/marksweb/django-bleach/context:python\n   :alt: Language grade: Python\n\n.. image:: https://img.shields.io/lgtm/alerts/g/marksweb/django-bleach.svg?logo=lgtm&logoWidth=18\n   :target: https://lgtm.com/projects/g/marksweb/django-bleach/alerts/\n   :alt: Total alerts\n\n|\n\nArchived\n========\n\nThis project has been archived because bleach is no longer supported. The supported means of sanitizing input data is the nh3 library and there's a similar package to this available:\n\nhttps://github.com/marksweb/django-nh3\n\n------------\n\nBleach_ is a Python module that takes any HTML input, and returns\nvalid, sanitised HTML that contains only an allowed subset of HTML tags,\nattributes and styles. ``django-bleach`` is a Django app that makes using\n``bleach`` extremely easy.\n\n`Read the documentation here`_.\n\nSetup\n-----\n\n1. Install ``django-bleach`` via ``pip``::\n\n    pip install django-bleach\n\n2. Add ``django-bleach`` to your ``INSTALLED_APPS``:\n\n   .. code-block:: python\n\n        INSTALLED_APPS = [\n            # ...\n            'django_bleach',\n            # ...\n        ]\n\n3. Select some sensible defaults for the allowed tags, attributes and styles;\n   and the behaviour when unknown tags are encountered. Each of these are\n   optional, and default to using the ``bleach`` defaults. See the\n   `bleach documentation`_:\n\n   .. code-block:: python\n\n        # Which HTML tags are allowed\n        BLEACH_ALLOWED_TAGS = ['p', 'b', 'i', 'u', 'em', 'strong', 'a']\n\n        # Which HTML attributes are allowed\n        BLEACH_ALLOWED_ATTRIBUTES = ['href', 'title', 'style']\n\n        # Which CSS properties are allowed in 'style' attributes (assuming\n        # style is an allowed attribute)\n        BLEACH_ALLOWED_STYLES = [\n            'font-family', 'font-weight', 'text-decoration', 'font-variant']\n\n        # Strip unknown tags if True, replace with HTML escaped characters if\n        # False\n        BLEACH_STRIP_TAGS = True\n\n        # Strip comments, or leave them in.\n        BLEACH_STRIP_COMMENTS = False\n\n4. Select the default widget for bleach fields. This defaults to\n   ``django.forms.Textarea``, but you will probably want to replace it with a\n   WYSIWYG editor, or something similar:\n\n   .. code-block:: python\n\n        # Use the CKEditorWidget for bleached HTML fields\n        BLEACH_DEFAULT_WIDGET = 'wysiwyg.widgets.WysiwygWidget'\n\n   I use `django-ckeditor`_ in my projects, but what you use is up to you.\n\nUsage\n-----\n\nIn your models\n**************\n\n``django-bleach`` provides three ways of creating bleached output. The simplest\nway of including user-editable HTML content that is automatically sanitised is\nby using the ``BleachField`` model field:\n\n.. code-block:: python\n\n    # in app/models.py\n\n    from django import models\n    from django_bleach.models import BleachField\n\n    class Post(models.Model):\n\n        title = models.CharField()\n        content = BleachField()\n\n        # ...\n\n``BleachField`` takes the following arguments, to customise the output of\n``bleach``. See the `bleach documentation`_ for their use:\n\n* ``allowed_tags``\n* ``allowed_attributes``\n* ``strip_tags``\n* ``strip_comments``\n* ``css_sanitizer``\n\nThe following argument will be deprecated in the near future:\n\n* ``allowed_styles``\n\nIn addition to the ``bleach``-specific arguments, the ``BleachField`` model field\naccepts all of the normal field attributes. Behind the scenes, it is a\n``TextField``, and accepts all the same arguments as the default ``TextField`` does.\n\nThe ``BleachField`` model field sanitises its value before it is saved to the\ndatabase and is marked safe so it can be immediately rendered in a template\nwithout further intervention.\n\nIn model forms, ``BleachField`` model field are represented with the\n``BleachField`` form field by default.\n\nIn your forms\n*************\n\nA ``BleachField`` form field is provided. This field sanitises HTML input from\nthe user, and presents safe, clean HTML to your Django application and the\nreturned value is marked safe for immediate rendering.\n\nIn your templates\n*****************\n\nIf you have a piece of content from somewhere that needs to be printed in a\ntemplate, you can use the ``bleach`` filter:\n\n.. code-block:: django\n\n    {% load bleach_tags %}\n\n    {{ some_unsafe_content|bleach }}\n\nIf filter has no arguments it uses default settings defined in your\napplication settings. You can override allowed tags by specifying them\nas a parameter to the filter:\n\n.. code-block:: django\n\n    {{ some_unsafe_content|bleach:\"p,span\" }}\n\nThere is also ``bleach_linkify`` which uses the linkify_ function of bleach\nwhich converts URL-like strings in an HTML fragment to links\n\nThis function converts strings that look like URLs, domain names and email\naddresses in text that may be an HTML fragment to links, while preserving:\n\n1. links already in the string\n2. urls found in attributes\n3. email addresses\n\n\n.. _bleach: https://github.com/mozilla/bleach\n.. _Read the documentation here: https://django-bleach.readthedocs.io/\n.. _bleach documentation: https://bleach.readthedocs.io/en/latest/clean.html\n.. _django-ckeditor: https://github.com/shaunsephton/django-ckeditor\n.. _linkify: https://bleach.readthedocs.io/en/latest/linkify.html?highlight=linkify#bleach.linkify \"linkify\"\n"
  },
  {
    "path": "django_bleach/__init__.py",
    "content": "__version__ = \"3.1.0\"\n\nVERSION = __version__.split(\".\")\n"
  },
  {
    "path": "django_bleach/forms.py",
    "content": "from importlib import import_module\n\nimport bleach\nfrom bleach.css_sanitizer import CSSSanitizer\nfrom django import forms\nfrom django.conf import settings\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.utils.safestring import mark_safe\n\nfrom django_bleach.utils import get_bleach_default_options\n\n\ndef load_widget(path):\n    \"\"\"Load custom widget for the form field\"\"\"\n    i = path.rfind(\".\")\n    module, attr = path[:i], path[i + 1 :]\n    try:\n        mod = import_module(module)\n    except (ImportError, ValueError) as e:\n        error_message = \"Error importing widget for BleachField %s: '%s'\"\n        raise ImproperlyConfigured(error_message % (path, e)) from e\n\n    try:\n        cls = getattr(mod, attr)\n    except AttributeError as e:\n        raise ImproperlyConfigured(\n            f\"Module '{module}' does not define a '{attr}' widget\"\n        ) from e\n\n    return cls\n\n\ndef get_default_widget():\n    \"\"\"Get the default widget or the widget defined in settings\"\"\"\n    default_widget = forms.Textarea\n    if hasattr(settings, \"BLEACH_DEFAULT_WIDGET\"):\n        default_widget = load_widget(settings.BLEACH_DEFAULT_WIDGET)\n    return default_widget\n\n\nclass BleachField(forms.CharField):\n    \"\"\"Bleach form field\"\"\"\n\n    empty_values = [None, \"\", [], (), {}]\n\n    def __init__(\n        self,\n        allowed_tags=None,\n        allowed_attributes=None,\n        allowed_styles=None,\n        allowed_protocols=None,\n        strip_comments=None,\n        strip_tags=None,\n        css_sanitizer=None,\n        *args,\n        **kwargs,\n    ):\n        self.widget = get_default_widget()\n\n        super().__init__(*args, **kwargs)\n\n        self.bleach_options = get_bleach_default_options()\n\n        if allowed_tags is not None:\n            self.bleach_options[\"tags\"] = allowed_tags\n        if allowed_attributes is not None:\n            self.bleach_options[\"attributes\"] = allowed_attributes\n        if allowed_styles:\n            css_sanitizer = CSSSanitizer(allowed_css_properties=allowed_styles)\n        if css_sanitizer is not None:\n            self.bleach_options[\"css_sanitizer\"] = css_sanitizer\n        if allowed_protocols is not None:\n            self.bleach_options[\"protocols\"] = allowed_protocols\n        if strip_tags is not None:\n            self.bleach_options[\"strip\"] = strip_tags\n        if strip_comments is not None:\n            self.bleach_options[\"strip_comments\"] = strip_comments\n\n    def to_python(self, value):\n        \"\"\"\n        Strips any dodgy HTML tags from the input.\n\n        Mark the return value as template safe.\n        \"\"\"\n        if value in self.empty_values:\n            return self.empty_value\n        return mark_safe(bleach.clean(value, **self.bleach_options))\n"
  },
  {
    "path": "django_bleach/models.py",
    "content": "from bleach import clean\nfrom bleach.css_sanitizer import CSSSanitizer\nfrom django.db import models\nfrom django.utils.safestring import mark_safe\n\nfrom . import forms\nfrom .utils import get_bleach_default_options\n\n\nclass BleachField(models.TextField):\n    def __init__(\n        self,\n        allowed_tags=None,\n        allowed_attributes=None,\n        allowed_styles=None,\n        allowed_protocols=None,\n        strip_tags=None,\n        strip_comments=None,\n        css_sanitizer=None,\n        *args,\n        **kwargs,\n    ):\n        super().__init__(*args, **kwargs)\n\n        self.bleach_kwargs = get_bleach_default_options()\n\n        if allowed_tags:\n            self.bleach_kwargs[\"tags\"] = allowed_tags\n        if allowed_attributes:\n            self.bleach_kwargs[\"attributes\"] = allowed_attributes\n        if allowed_styles:\n            css_sanitizer = CSSSanitizer(allowed_css_properties=allowed_styles)\n        if css_sanitizer:\n            self.bleach_kwargs[\"css_sanitizer\"] = css_sanitizer\n        if allowed_protocols:\n            self.bleach_kwargs[\"protocols\"] = allowed_protocols\n        if strip_tags:\n            self.bleach_kwargs[\"strip\"] = strip_tags\n        if strip_comments:\n            self.bleach_kwargs[\"strip_comments\"] = strip_comments\n\n    def formfield(self, form_class=forms.BleachField, **kwargs):\n        \"\"\"Makes the field for a ModelForm\"\"\"\n\n        # If field doesn't have any choices add kwargs expected by BleachField.\n        if not self.choices:\n            kwargs.setdefault(\"widget\", forms.get_default_widget())\n            kwargs.update(\n                {\n                    \"max_length\": self.max_length,\n                    \"allowed_tags\": self.bleach_kwargs.get(\"tags\"),\n                    \"allowed_attributes\": self.bleach_kwargs.get(\"attributes\"),\n                    \"css_sanitizer\": self.bleach_kwargs.get(\"css_sanitizer\"),\n                    \"allowed_protocols\": self.bleach_kwargs.get(\"protocols\"),\n                    \"strip_tags\": self.bleach_kwargs.get(\"strip\"),\n                    \"strip_comments\": self.bleach_kwargs.get(\"strip_comments\"),\n                    \"required\": not self.blank,\n                }\n            )\n\n        return super().formfield(form_class=form_class, **kwargs)\n\n    def pre_save(self, model_instance, add):\n        data = getattr(model_instance, self.attname)\n        if data is None:\n            return data\n        clean_value = clean(data, **self.bleach_kwargs) if data else \"\"\n        setattr(model_instance, self.attname, mark_safe(clean_value))\n        return clean_value\n\n    def from_db_value(self, value, expression, connection):\n        if value is None:\n            return value\n        # Values are sanitised before saving, so any value returned from the DB\n        # is safe to render unescaped.\n        return mark_safe(value)\n"
  },
  {
    "path": "django_bleach/templatetags/__init__.py",
    "content": ""
  },
  {
    "path": "django_bleach/templatetags/bleach_tags.py",
    "content": "import bleach\nfrom django import template\nfrom django.utils.safestring import mark_safe\n\nfrom django_bleach.utils import get_bleach_default_options\n\nregister = template.Library()\n\n\n@register.filter(name=\"bleach\")\ndef bleach_value(value, tags=None):\n    if value is None:\n        return None\n\n    bleach_args = get_bleach_default_options()\n    if tags is not None:\n        args = bleach_args.copy()\n        args[\"tags\"] = tags.split(\",\")\n    else:\n        args = bleach_args\n    bleached_value = bleach.clean(value, **args)\n    return mark_safe(bleached_value)\n\n\n@register.filter\ndef bleach_linkify(value):\n    \"\"\"\n    Convert URL-like strings in an HTML fragment to links\n\n    This function converts strings that look like URLs, domain names and email\n    addresses in text that may be an HTML fragment to links, while preserving:\n\n        1. links already in the string\n        2. urls found in attributes\n        3. email addresses\n    \"\"\"\n    if value is None:\n        return None\n\n    return bleach.linkify(value, parse_email=True)\n"
  },
  {
    "path": "django_bleach/tests/__init__.py",
    "content": ""
  },
  {
    "path": "django_bleach/tests/test_forms.py",
    "content": "from bleach.css_sanitizer import CSSSanitizer\nfrom django import forms\nfrom django.test import TestCase, override_settings\nfrom django.utils.safestring import SafeString\n\nfrom django_bleach.forms import BleachField\nfrom testproject.constants import (\n    ALLOWED_ATTRIBUTES,\n    ALLOWED_CSS_PROPERTIES,\n    ALLOWED_PROTOCOLS,\n    ALLOWED_STYLES,\n    ALLOWED_TAGS,\n)\nfrom testproject.forms import BleachForm, CustomBleachWidget\n\n\nclass TestBleachField(TestCase):\n    def test_empty(self):\n        \"\"\"\n        Test that the empty_value arg is returned for any input empty value\n        \"\"\"\n        for requested_empty_value in (\"\", None):\n            field = BleachField(empty_value=requested_empty_value)\n            for empty_value in field.empty_values:\n                self.assertEqual(\n                    field.to_python(empty_value), requested_empty_value\n                )\n\n    def test_return_type(self):\n        \"\"\"Test bleached values are SafeString objects\"\"\"\n        field = BleachField()\n        self.assertIsInstance(field.to_python(\"some text\"), SafeString)\n\n    def test_bleaching(self):\n        \"\"\"Test values are bleached\"\"\"\n        test_data = {\n            \"no_tags\": \"<h1>Heading</h1>\",\n            \"no_strip\": \"<h1>Heading</h1>\",\n            \"bleach_strip\": \"<!-- script here -->\"\n            '<script>alert(\"Hello World\")</script>',\n            \"bleach_attrs\": '<a href=\"https://www.google.com\" '\n            'target=\"_blank\">google.com</a>',\n            \"bleach_css_sanitizer\": '<li style=\"color: white\">item</li>',\n        }\n        form = BleachForm(data=test_data)\n        form.is_valid()\n        self.assertEqual(form.cleaned_data[\"no_tags\"], \"Heading\")\n        self.assertEqual(\n            form.cleaned_data[\"no_strip\"], \"&lt;h1&gt;Heading&lt;/h1&gt;\"\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_strip\"], 'alert(\"Hello World\")'\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_attrs\"],\n            '<a href=\"https://www.google.com\">google.com</a>',\n        )\n        self.assertNotEqual(\n            form.cleaned_data[\"bleach_css_sanitizer\"],\n            test_data[\"bleach_css_sanitizer\"],\n        )\n\n    def test_tags(self):\n        \"\"\"Test allowed tags are rendered\"\"\"\n        test_data = {\n            \"no_tags\": \"<p>No tags here</p>\",\n            \"no_strip\": \"No tags here\",\n            \"bleach_strip\": \"<ul><li>one</li><li>two</li></ul>\",\n            \"bleach_attrs\": '<a href=\"https://www.google.com\" '\n            'title=\"Google\">google.com</a>',\n            \"bleach_css_sanitizer\": '<li style=\"color: white;\">item</li>',\n        }\n        form = BleachForm(data=test_data)\n        form.is_valid()\n        self.assertEqual(form.cleaned_data[\"no_tags\"], \"No tags here\")\n        self.assertEqual(form.cleaned_data[\"no_strip\"], \"No tags here\")\n\n        self.assertEqual(\n            form.cleaned_data[\"bleach_strip\"], test_data[\"bleach_strip\"]\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_attrs\"], test_data[\"bleach_attrs\"]\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_css_sanitizer\"],\n            test_data[\"bleach_css_sanitizer\"],\n        )\n\n    def test_attrs(self):\n        \"\"\"Test allowed attributes are rendered\"\"\"\n        list_html = (\n            '<ul class=\"our-list\">'\n            '<li class=\"list-item\">one</li>'\n            \"<li>two</li>\"\n            \"</ul>\"\n        )\n        test_data = {\n            \"no_strip\": \"\",\n            \"no_tags\": list_html,\n            \"bleach_strip\": list_html,\n            \"bleach_attrs\": list_html,\n            \"bleach_css_sanitizer\": list_html,\n        }\n        form = BleachForm(data=test_data)\n        form.is_valid()\n        self.assertEqual(form.cleaned_data[\"no_tags\"], \"\\none\\ntwo\")\n\n        self.assertEqual(\n            form.cleaned_data[\"bleach_strip\"],\n            \"<ul><li>one</li><li>two</li></ul>\",\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_attrs\"], test_data[\"bleach_strip\"]\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_css_sanitizer\"],\n            \"<ul><li>one</li><li>two</li></ul>\",\n        )\n\n\n@override_settings(\n    BLEACH_DEFAULT_WIDGET=\"testproject.forms.CustomBleachWidget\"\n)\nclass TestCustomWidget(TestCase):\n    def setUp(self):\n        class CustomForm(forms.Form):\n            # Define form inside function with overridden settings so\n            # get_default_widget() sees the modified setting.\n            no_tags = BleachField(\n                max_length=100, strip_tags=True, allowed_tags=[]\n            )\n            no_strip = BleachField(\n                max_length=100, allowed_tags=None, allowed_attributes=None\n            )\n            bleach_strip = BleachField(\n                max_length=100,\n                strip_comments=True,\n                strip_tags=True,\n                allowed_tags=ALLOWED_TAGS,\n            )\n            bleach_attrs = BleachField(\n                max_length=100,\n                strip_tags=False,\n                allowed_tags=ALLOWED_TAGS,\n                allowed_protocols=ALLOWED_PROTOCOLS,\n                allowed_attributes=ALLOWED_ATTRIBUTES,\n            )\n            bleach_styles = BleachField(\n                max_length=100,\n                strip_tags=False,\n                allowed_attributes=[\"style\"],\n                allowed_tags=ALLOWED_TAGS,\n                allowed_styles=ALLOWED_STYLES,\n            )\n            bleach_css_sanitizer = BleachField(\n                max_length=100,\n                strip_tags=False,\n                allowed_attributes=[\"style\"],\n                allowed_tags=ALLOWED_TAGS,\n                css_sanitizer=CSSSanitizer(\n                    allowed_css_properties=ALLOWED_CSS_PROPERTIES\n                ),\n            )\n\n        self.CustomForm = CustomForm\n\n    def test_custom_widget_type(self):\n        \"\"\"Test widget class matches BLEACH_DEFAULT_WIDGET\"\"\"\n        for field in self.CustomForm().fields.values():\n            self.assertIsInstance(field.widget, CustomBleachWidget)\n\n    def test_custom_widget_bleaches_content(self):\n        \"\"\"\n        Test input is bleached according to config while using a custom\n        widget\n        \"\"\"\n        test_data = {\n            \"no_tags\": \"<h1>Heading</h1>\",\n            \"no_strip\": \"<h1>Heading</h1>\",\n            \"bleach_strip\": \"<!-- script here -->\"\n            '<script>alert(\"Hello World\")</script>',\n            \"bleach_attrs\": (\n                '<a href=\"http://www.google.com\" '\n                'target=\"_blank\">google.com</a>'\n                '<a href=\"https://www.google.com\">google.com</a>'\n            ),\n            \"bleach_styles\": '<li style=\"color: white\">item</li>',\n            \"bleach_css_sanitizer\": '<li style=\"color: white\">item</li>',\n        }\n        form = self.CustomForm(data=test_data)\n        form.is_valid()\n        self.assertEqual(form.cleaned_data[\"no_tags\"], \"Heading\")\n        self.assertEqual(\n            form.cleaned_data[\"no_strip\"], \"&lt;h1&gt;Heading&lt;/h1&gt;\"\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_strip\"], 'alert(\"Hello World\")'\n        )\n        self.assertEqual(\n            form.cleaned_data[\"bleach_attrs\"],\n            '<a>google.com</a><a href=\"https://www.google.com\">google.com</a>',\n        )\n        self.assertNotEqual(\n            form.cleaned_data[\"bleach_styles\"], test_data[\"bleach_styles\"]\n        )\n        self.assertNotEqual(\n            form.cleaned_data[\"bleach_css_sanitizer\"],\n            test_data[\"bleach_css_sanitizer\"],\n        )\n"
  },
  {
    "path": "django_bleach/tests/test_modelformfield.py",
    "content": "from django import forms\nfrom django.test import TestCase, override_settings\n\nfrom django_bleach import forms as bleach_forms\nfrom testproject.forms import CustomBleachWidget\nfrom testproject.models import Person\n\nfrom .test_models import BleachContent\n\n\nclass BleachContentModelForm(forms.ModelForm):\n    class Meta:\n        model = BleachContent\n        fields = \"__all__\"\n\n\nclass TestModelFormField(TestCase):\n    def setUp(self):\n        model_form = BleachContentModelForm()\n        self.form_field = model_form.fields[\"content\"]\n        self.choice_form_field = model_form.fields[\"choice\"]\n        self.blank_field_form_field = model_form.fields[\"blank_field\"]\n        self.model_field = BleachContent()._meta.get_field(\"content\")\n\n    def test_formfield_type(self):\n        \"\"\"\n        Check content's form field is instance of BleachField\n        \"\"\"\n        self.assertIsInstance(self.form_field, bleach_forms.BleachField)\n\n    def test_default_widget_type(self):\n        \"\"\"\n        Widget class is Textarea when BLEACH_DEFAULT_WIDGET is not set.\n        \"\"\"\n        form = forms.modelform_factory(Person, fields=\"__all__\")()\n        self.assertIsInstance(\n            form.fields[\"biography\"].widget,\n            forms.Textarea,\n        )\n\n    @override_settings(\n        BLEACH_DEFAULT_WIDGET=\"testproject.forms.CustomBleachWidget\"\n    )\n    def test_custom_widget_type(self):\n        \"\"\"\n        Widget class matches BLEACH_DEFAULT_WIDGET setting.\n        \"\"\"\n        form = forms.modelform_factory(Person, fields=\"__all__\")()\n        self.assertIsInstance(\n            form.fields[\"biography\"].widget, CustomBleachWidget\n        )\n\n    @override_settings(\n        BLEACH_DEFAULT_WIDGET=\"testproject.forms.CustomBleachWidget\"\n    )\n    def test_widget_override(self):\n        \"\"\"\n        Widget class matches widget class specified in overrides.\n        \"\"\"\n        form = forms.modelform_factory(\n            Person,\n            fields=\"__all__\",\n            widgets={\"biography\": CustomBleachWidget},\n        )()\n        self.assertIsInstance(\n            form.fields[\"biography\"].widget, CustomBleachWidget\n        )\n\n    def test_same_allowed_args(self):\n        \"\"\"\n        Check model and form's allowed arguments (tags, attributes, ...)\n        are the same\n        \"\"\"\n        form_allowed_args: dict = self.form_field.bleach_options\n        model_allowed_args: dict = self.model_field.bleach_kwargs\n\n        self.assertEqual(model_allowed_args, form_allowed_args)\n\n    def test_with_choices(self):\n        \"\"\"\n        Check if choices specified, use TextField's default widget (Select).\n        \"\"\"\n        form_field_widget = self.choice_form_field.widget.__class__\n        self.assertEqual(form_field_widget, forms.widgets.Select)\n\n    def test_optional_field(self):\n        \"\"\"\n        Check for the required flag on fields with `blank=True`\n        \"\"\"\n        self.assertEqual(self.blank_field_form_field.required, False)\n\n    def test_required_field(self):\n        \"\"\"\n        Check for the required flag on fields\n        \"\"\"\n        self.assertEqual(self.form_field.required, True)\n\n\nclass CustomBleachedFormField(bleach_forms.BleachField): ...\n\n\nclass OverriddenBleachContentModelForm(forms.ModelForm):\n    class Meta:\n        model = BleachContent\n        fields = \"__all__\"\n        field_classes = {\n            \"content\": CustomBleachedFormField,\n        }\n\n\nclass TestModelFormFieldOverrides(TestCase):\n    def setUp(self):\n        model_form = OverriddenBleachContentModelForm()\n        self.form_field = model_form.fields[\"content\"]\n\n    def test_formfield_type(self):\n        \"\"\"\n        Check content's form field is instance of CustomBleachedFormField.\n        \"\"\"\n        self.assertIsInstance(self.form_field, CustomBleachedFormField)\n"
  },
  {
    "path": "django_bleach/tests/test_models.py",
    "content": "from bleach.css_sanitizer import CSSSanitizer\nfrom django.db import models\nfrom django.test import TestCase\nfrom django.utils.safestring import SafeString\n\nfrom django_bleach.models import BleachField\nfrom testproject.constants import (\n    ALLOWED_ATTRIBUTES,\n    ALLOWED_CSS_PROPERTIES,\n    ALLOWED_PROTOCOLS,\n    ALLOWED_TAGS,\n)\n\n\nclass BleachContent(models.Model):\n    \"\"\"Bleach test model\"\"\"\n\n    CHOICES = ((\"f\", \"first choice\"), (\"s\", \"second choice\"))\n    content = BleachField(\n        allowed_attributes=ALLOWED_ATTRIBUTES,\n        allowed_protocols=ALLOWED_PROTOCOLS,\n        css_sanitizer=CSSSanitizer(\n            allowed_css_properties=ALLOWED_CSS_PROPERTIES\n        ),\n        allowed_tags=ALLOWED_TAGS,\n        allowed_styles=ALLOWED_CSS_PROPERTIES,\n        strip_comments=True,\n        strip_tags=True,\n    )\n    choice = BleachField(choices=CHOICES)\n    blank_field = BleachField(blank=True)\n    null_field = BleachField(blank=True, null=True)\n\n\nclass TestBleachModelField(TestCase):\n    \"\"\"Test model field\"\"\"\n\n    def test_bleaching(self):\n        \"\"\"Test values are bleached\"\"\"\n        test_data = {\n            \"no_tags\": \"<h1>Heading</h1>\",\n            \"no_strip\": \"<h1>Heading</h1>\",\n            \"bleach_strip\": \"\"\"<script>alert(\"Hello World\")</script>\"\"\",\n            \"bleach_attrs\": '<a href=\"http://www.google.com\" '\n            'target=\"_blank\">google.com</a>',\n            \"bleach_css_sanitizer\": '<li style=\"color: white\">item</li>',\n            \"bleach_comment\": \"<!-- this is a comment -->\",\n        }\n        expected_values = {\n            \"no_tags\": \"Heading\",\n            \"no_strip\": \"Heading\",\n            \"bleach_strip\": \"\"\"alert(\"Hello World\")\"\"\",\n            \"bleach_attrs\": \"<a>google.com</a>\",\n            \"bleach_css_sanitizer\": '<li style=\"color: white;\">item</li>',\n            \"bleach_comment\": \"\",\n        }\n\n        for key, value in test_data.items():\n            obj = BleachContent.objects.create(content=value)\n            self.assertEqual(obj.content, expected_values[key])\n\n    def test_retrieved_values_are_template_safe(self):\n        obj = BleachContent.objects.create(content=\"some content\")\n        obj.refresh_from_db()\n        self.assertIsInstance(obj.content, SafeString)\n        obj = BleachContent.objects.create(content=\"\")\n        obj.refresh_from_db()\n        self.assertIsInstance(obj.content, SafeString)\n\n    def test_saved_values_are_template_safe(self):\n        obj = BleachContent(content=\"some content\")\n        obj.save()\n        self.assertIsInstance(obj.content, SafeString)\n        obj = BleachContent(content=\"\")\n        obj.save()\n        self.assertIsInstance(obj.content, SafeString)\n\n    def test_saved_none_values_are_none(self):\n        obj = BleachContent(null_field=None)\n        obj.save()\n        self.assertIsNone(obj.null_field)\n\n\nclass BleachNullableContent(models.Model):\n    \"\"\"Bleach test model\"\"\"\n\n    content = BleachField(\n        allowed_attributes=ALLOWED_ATTRIBUTES,\n        allowed_protocols=ALLOWED_PROTOCOLS,\n        css_sanitizer=CSSSanitizer(\n            allowed_css_properties=ALLOWED_CSS_PROPERTIES\n        ),\n        allowed_tags=ALLOWED_TAGS,\n        strip_comments=True,\n        strip_tags=True,\n        blank=True,\n        null=True,\n    )\n\n\nclass TestBleachNullableModelField(TestCase):\n    \"\"\"Test model field\"\"\"\n\n    def test_bleaching(self):\n        \"\"\"Test values are bleached\"\"\"\n        test_data = {\n            \"none\": None,\n            \"empty\": \"\",\n            \"whitespaces\": \"   \",\n            \"linebreak\": \"\\n\",\n        }\n        expected_values = {\n            \"none\": None,\n            \"empty\": \"\",\n            \"whitespaces\": \"   \",\n            \"linebreak\": \"\\n\",\n        }\n\n        for key, value in test_data.items():\n            obj = BleachNullableContent.objects.create(content=value)\n            self.assertEqual(obj.content, expected_values[key])\n"
  },
  {
    "path": "django_bleach/tests/test_settings.py",
    "content": "from unittest.mock import patch\n\nfrom bleach.css_sanitizer import CSSSanitizer\nfrom django.core.exceptions import ImproperlyConfigured\nfrom django.forms import Textarea\nfrom django.test import TestCase, override_settings\n\nfrom django_bleach.forms import get_default_widget\nfrom django_bleach.utils import get_bleach_default_options\nfrom testproject.constants import (\n    ALLOWED_ATTRIBUTES,\n    ALLOWED_CSS_PROPERTIES,\n    ALLOWED_PROTOCOLS,\n    ALLOWED_TAGS,\n)\nfrom testproject.forms import CustomBleachWidget\n\n\nclass TestBleachOptions(TestCase):\n    @patch(\n        \"django_bleach.utils.settings\",\n        BLEACH_ALLOWED_ATTRIBUTES=ALLOWED_ATTRIBUTES,\n    )\n    def test_custom_attrs(self, settings):\n        bleach_args = get_bleach_default_options()\n        self.assertEqual(bleach_args[\"attributes\"], ALLOWED_ATTRIBUTES)\n\n    @patch(\n        \"django_bleach.utils.settings\",\n        BLEACH_ALLOWED_PROTOCOLS=ALLOWED_PROTOCOLS,\n    )\n    def test_custom_proto(self, settings):\n        bleach_args = get_bleach_default_options()\n        self.assertEqual(bleach_args[\"protocols\"], ALLOWED_PROTOCOLS)\n\n    @patch(\n        \"django_bleach.utils.settings\",\n        BLEACH_ALLOWED_STYLES=ALLOWED_CSS_PROPERTIES,\n    )\n    def test_custom_styles(self, settings):\n        bleach_args = get_bleach_default_options()\n        self.assertIsInstance(bleach_args[\"css_sanitizer\"], CSSSanitizer)\n        self.assertEqual(\n            bleach_args[\"css_sanitizer\"].allowed_css_properties,\n            ALLOWED_CSS_PROPERTIES,\n        )\n\n    @patch(\"django_bleach.utils.settings\", BLEACH_ALLOWED_TAGS=ALLOWED_TAGS)\n    def test_custom_tags(self, settings):\n        bleach_args = get_bleach_default_options()\n        self.assertEqual(bleach_args[\"tags\"], ALLOWED_TAGS)\n\n    @patch(\"django_bleach.utils.settings\", BLEACH_STRIP_TAGS=True)\n    def test_strip_tags(self, settings):\n        bleach_args = get_bleach_default_options()\n        self.assertEqual(bleach_args[\"strip\"], True)\n\n    @patch(\"django_bleach.utils.settings\", BLEACH_STRIP_COMMENTS=True)\n    def test_strip_comments(self, settings):\n        bleach_args = get_bleach_default_options()\n        self.assertEqual(bleach_args[\"strip_comments\"], True)\n\n\nclass TestDefaultWidget(TestCase):\n    \"\"\"Test form field widgets\"\"\"\n\n    @override_settings(BLEACH_DEFAULT_WIDGET=\"django.forms.widgets.Textarea\")\n    def test_default_widget(self):\n        self.assertEqual(get_default_widget(), Textarea)\n\n    @patch(\n        \"django_bleach.forms.settings\",\n        BLEACH_DEFAULT_WIDGET=\"testproject.forms.CustomBleachWidget\",\n    )\n    def test_custom_widget(self, settings):\n        self.assertEqual(get_default_widget(), CustomBleachWidget)\n\n    @patch(\n        \"django_bleach.forms.settings\",\n        BLEACH_DEFAULT_WIDGET=\"testproject.forms.NoneExistentWidget\",\n    )\n    def test_attribute_err(self, settings):\n        with self.assertRaises(ImproperlyConfigured):\n            get_default_widget()\n\n    @patch(\n        \"django_bleach.forms.settings\",\n        BLEACH_DEFAULT_WIDGET=\"testproject.forms2.CustomBleachWidget\",\n    )\n    def test_import_err(self, settings):\n        with self.assertRaises(ImproperlyConfigured):\n            get_default_widget()\n"
  },
  {
    "path": "django_bleach/tests/test_templatetags.py",
    "content": "from django.template import Context, Template\nfrom django.test import TestCase\n\n\nclass TestBleachTemplates(TestCase):\n    \"\"\"Test template tags\"\"\"\n\n    def test_bleaching(self):\n        \"\"\"Test that unsafe tags are sanitised\"\"\"\n        context = Context(\n            {\"some_unsafe_content\": '<script>alert(\"Hello World!\")</script>'},\n        )\n        template_to_render = Template(\n            \"{% load bleach_tags %}\" \"{{ some_unsafe_content|bleach }}\"\n        )\n        rendered_template = template_to_render.render(context)\n        self.assertInHTML(\n            '&lt;script&gt;alert(\"Hello World!\")&lt;/script&gt;',\n            rendered_template,\n        )\n\n    def test_bleaching_none(self):\n        \"\"\"Test that None is handled properly as an input\"\"\"\n        context = Context({\"none_value\": None})\n        template_to_render = Template(\n            \"{% load bleach_tags %}\" \"{{ none_value|bleach }}\"\n        )\n        rendered_template = template_to_render.render(context)\n        self.assertEqual(\"None\", rendered_template)\n\n    def test_bleaching_tags(self):\n        \"\"\"Test provided tags are kept\"\"\"\n        context = Context(\n            {\"some_unsafe_content\": '<script>alert(\"Hello World!\")</script>'}\n        )\n        template_to_render = Template(\n            \"{% load bleach_tags %}\"\n            '{{ some_unsafe_content|bleach:\"script\" }}'\n        )\n        rendered_template = template_to_render.render(context)\n        self.assertInHTML(\n            '<script>alert(\"Hello World!\")</script>', rendered_template\n        )\n\n    def test_linkify(self):\n        \"\"\"Test bleach linkify\"\"\"\n        url = \"www.google.com\"\n        context = Context({\"link_this\": url})\n        template_to_render = Template(\n            \"{% load bleach_tags %}\" \"{{ link_this|bleach_linkify|safe }}\"\n        )\n        rendered_template = template_to_render.render(context)\n        self.assertInHTML(\n            f'<a href=\"http://{url}\" rel=\"nofollow\">{url}</a>',\n            rendered_template,\n        )\n\n    def test_linkify_none(self):\n        \"\"\"Test bleach linkify with None as an input\"\"\"\n        context = Context({\"none_value\": None})\n        template_to_render = Template(\n            \"{% load bleach_tags %}\" \"{{ none_value|bleach_linkify }}\"\n        )\n        rendered_template = template_to_render.render(context)\n        self.assertEqual(\n            \"None\",\n            rendered_template,\n        )\n"
  },
  {
    "path": "django_bleach/utils.py",
    "content": "from bleach.css_sanitizer import CSSSanitizer\nfrom django.conf import settings\n\n\ndef get_bleach_default_options():\n    bleach_args = {}\n    bleach_settings = {\n        \"BLEACH_ALLOWED_TAGS\": \"tags\",\n        \"BLEACH_ALLOWED_ATTRIBUTES\": \"attributes\",\n        \"BLEACH_ALLOWED_STYLES\": \"css_sanitizer\",\n        \"BLEACH_STRIP_TAGS\": \"strip\",\n        \"BLEACH_STRIP_COMMENTS\": \"strip_comments\",\n        \"BLEACH_ALLOWED_PROTOCOLS\": \"protocols\",\n    }\n\n    for setting, kwarg in bleach_settings.items():\n        if hasattr(settings, setting):\n            attr = getattr(settings, setting)\n            if setting == \"BLEACH_ALLOWED_STYLES\":\n                attr = CSSSanitizer(allowed_css_properties=attr)\n            bleach_args[kwarg] = attr\n\n    return bleach_args\n"
  },
  {
    "path": "docs/Makefile",
    "content": "# Makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line.\nSPHINXOPTS    =\nSPHINXBUILD   = sphinx-build\nPAPER         =\nBUILDDIR      = _build\n\n# Internal variables.\nPAPEROPT_a4     = -D latex_paper_size=a4\nPAPEROPT_letter = -D latex_paper_size=letter\nALLSPHINXOPTS   = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n# the i18n builder cannot share the environment and doctrees with the others\nI18NSPHINXOPTS  = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .\n\n.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext\n\nhelp:\n\t@echo \"Please use \\`make <target>' where <target> is one of\"\n\t@echo \"  html       to make standalone HTML files\"\n\t@echo \"  dirhtml    to make HTML files named index.html in directories\"\n\t@echo \"  singlehtml to make a single large HTML file\"\n\t@echo \"  pickle     to make pickle files\"\n\t@echo \"  json       to make JSON files\"\n\t@echo \"  htmlhelp   to make HTML files and a HTML help project\"\n\t@echo \"  qthelp     to make HTML files and a qthelp project\"\n\t@echo \"  devhelp    to make HTML files and a Devhelp project\"\n\t@echo \"  epub       to make an epub\"\n\t@echo \"  latex      to make LaTeX files, you can set PAPER=a4 or PAPER=letter\"\n\t@echo \"  latexpdf   to make LaTeX files and run them through pdflatex\"\n\t@echo \"  text       to make text files\"\n\t@echo \"  man        to make manual pages\"\n\t@echo \"  texinfo    to make Texinfo files\"\n\t@echo \"  info       to make Texinfo files and run them through makeinfo\"\n\t@echo \"  gettext    to make PO message catalogs\"\n\t@echo \"  changes    to make an overview of all changed/added/deprecated items\"\n\t@echo \"  linkcheck  to check all external links for integrity\"\n\t@echo \"  doctest    to run all doctests embedded in the documentation (if enabled)\"\n\nclean:\n\t-rm -rf $(BUILDDIR)/*\n\nhtml:\n\t$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/html.\"\n\ndirhtml:\n\t$(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml\n\t@echo\n\t@echo \"Build finished. The HTML pages are in $(BUILDDIR)/dirhtml.\"\n\nsinglehtml:\n\t$(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml\n\t@echo\n\t@echo \"Build finished. The HTML page is in $(BUILDDIR)/singlehtml.\"\n\npickle:\n\t$(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle\n\t@echo\n\t@echo \"Build finished; now you can process the pickle files.\"\n\njson:\n\t$(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json\n\t@echo\n\t@echo \"Build finished; now you can process the JSON files.\"\n\nhtmlhelp:\n\t$(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp\n\t@echo\n\t@echo \"Build finished; now you can run HTML Help Workshop with the\" \\\n\t      \".hhp project file in $(BUILDDIR)/htmlhelp.\"\n\nqthelp:\n\t$(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp\n\t@echo\n\t@echo \"Build finished; now you can run \"qcollectiongenerator\" with the\" \\\n\t      \".qhcp project file in $(BUILDDIR)/qthelp, like this:\"\n\t@echo \"# qcollectiongenerator $(BUILDDIR)/qthelp/django-bleach.qhcp\"\n\t@echo \"To view the help file:\"\n\t@echo \"# assistant -collectionFile $(BUILDDIR)/qthelp/django-bleach.qhc\"\n\ndevhelp:\n\t$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp\n\t@echo\n\t@echo \"Build finished.\"\n\t@echo \"To view the help file:\"\n\t@echo \"# mkdir -p $$HOME/.local/share/devhelp/django-bleach\"\n\t@echo \"# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/django-bleach\"\n\t@echo \"# devhelp\"\n\nepub:\n\t$(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub\n\t@echo\n\t@echo \"Build finished. The epub file is in $(BUILDDIR)/epub.\"\n\nlatex:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo\n\t@echo \"Build finished; the LaTeX files are in $(BUILDDIR)/latex.\"\n\t@echo \"Run \\`make' in that directory to run these through (pdf)latex\" \\\n\t      \"(use \\`make latexpdf' here to do that automatically).\"\n\nlatexpdf:\n\t$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex\n\t@echo \"Running LaTeX files through pdflatex...\"\n\t$(MAKE) -C $(BUILDDIR)/latex all-pdf\n\t@echo \"pdflatex finished; the PDF files are in $(BUILDDIR)/latex.\"\n\ntext:\n\t$(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text\n\t@echo\n\t@echo \"Build finished. The text files are in $(BUILDDIR)/text.\"\n\nman:\n\t$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man\n\t@echo\n\t@echo \"Build finished. The manual pages are in $(BUILDDIR)/man.\"\n\ntexinfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo\n\t@echo \"Build finished. The Texinfo files are in $(BUILDDIR)/texinfo.\"\n\t@echo \"Run \\`make' in that directory to run these through makeinfo\" \\\n\t      \"(use \\`make info' here to do that automatically).\"\n\ninfo:\n\t$(SPHINXBUILD) -b texinfo $(ALLSPHINXOPTS) $(BUILDDIR)/texinfo\n\t@echo \"Running Texinfo files through makeinfo...\"\n\tmake -C $(BUILDDIR)/texinfo info\n\t@echo \"makeinfo finished; the Info files are in $(BUILDDIR)/texinfo.\"\n\ngettext:\n\t$(SPHINXBUILD) -b gettext $(I18NSPHINXOPTS) $(BUILDDIR)/locale\n\t@echo\n\t@echo \"Build finished. The message catalogs are in $(BUILDDIR)/locale.\"\n\nchanges:\n\t$(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes\n\t@echo\n\t@echo \"The overview file is in $(BUILDDIR)/changes.\"\n\nlinkcheck:\n\t$(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck\n\t@echo\n\t@echo \"Link check complete; look for any errors in the above output \" \\\n\t      \"or in $(BUILDDIR)/linkcheck/output.txt.\"\n\ndoctest:\n\t$(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest\n\t@echo \"Testing of doctests in the sources finished, look at the \" \\\n\t      \"results in $(BUILDDIR)/doctest/output.txt.\"\n"
  },
  {
    "path": "docs/_static/.do-not-delete",
    "content": ""
  },
  {
    "path": "docs/conf.py",
    "content": "#\n# django-bleach documentation build configuration file, created by\n# sphinx-quickstart on Tue Jun 19 10:24:12 2012.\n#\n# This file is execfile()d with the current directory set to its containing dir.\n#\n# Note that not all possible configuration values are present in this\n# autogenerated file.\n#\n# All configuration values have a default; values that are commented out\n# serve to show the default.\n\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\n# sys.path.insert(0, os.path.abspath('.'))\n\n# -- General configuration -----------------------------------------------------\n\n# If your documentation needs a minimal Sphinx version, state it here.\n# needs_sphinx = '1.0'\n\n# Add any Sphinx extension module names here, as strings. They can be extensions\n# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.\nimport datetime\n\nextensions = [\"sphinx.ext.autodoc\"]\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = [\"_templates\"]\n\n# The suffix of source filenames.\nsource_suffix = \".rst\"\n\n# The encoding of source files.\n# source_encoding = 'utf-8-sig'\n\n# The master toctree document.\nmaster_doc = \"index\"\n\n# General information about the project.\nproject = \"django-bleach\"\ncopyright = f\"{datetime.date.today().year}, Tim Heap, Mark Walker\"\n# The version info for the project you're documenting, acts as replacement for\n# |version| and |release|, also used in various other places throughout the\n# built documents.\n#\n# The short X.Y version.\nversion = \"3.1.0\"\n# The full version, including alpha/beta/rc tags.\n# release = '1.0.0'\n\n# The language for content autogenerated by Sphinx. Refer to documentation\n# for a list of supported languages.\n# language = None\n\n# There are two options for replacing |today|: either, you set today to some\n# non-false value, then it is used:\n# today = ''\n# Else, today_fmt is used as the format for a strftime call.\n# today_fmt = '%B %d, %Y'\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\nexclude_patterns = [\"_build\"]\n\n# The reST default role (used for this markup: `text`) to use for all documents.\n# default_role = None\n\n# If true, '()' will be appended to :func: etc. cross-reference text.\n# add_function_parentheses = True\n\n# If true, the current module name will be prepended to all description\n# unit titles (such as .. function::).\n# add_module_names = True\n\n# If true, sectionauthor and moduleauthor directives will be shown in the\n# output. They are ignored by default.\n# show_authors = False\n\n# The name of the Pygments (syntax highlighting) style to use.\npygments_style = \"sphinx\"\n\n# A list of ignored prefixes for module index sorting.\n# modindex_common_prefix = []\n\n\n# -- Options for HTML output ---------------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\ntry:\n    import furo\n\n    html_theme = \"furo\"\n    html_theme_options = {\n        \"navigation_with_keys\": True,\n    }\nexcept ImportError:\n    html_theme = \"default\"\n\n# Theme options are theme-specific and customize the look and feel of a theme\n# further.  For a list of options available for each theme, see the\n# documentation.\n# html_theme_options = {}\n\n# Add any paths that contain custom themes here, relative to this directory.\n# html_theme_path = []\n\n# The name for this set of Sphinx documents.  If None, it defaults to\n# \"<project> v<release> documentation\".\n# html_title = None\n\n# A shorter title for the navigation bar.  Default is the same as html_title.\n# html_short_title = None\n\n# The name of an image file (relative to this directory) to place at the top\n# of the sidebar.\n# html_logo = None\n\n# The name of an image file (within the static path) to use as favicon of the\n# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32\n# pixels large.\n# html_favicon = None\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\nhtml_static_path = [\"_static\"]\n\n# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,\n# using the given strftime format.\n# html_last_updated_fmt = '%b %d, %Y'\n\n# If true, SmartyPants will be used to convert quotes and dashes to\n# typographically correct entities.\n# html_use_smartypants = True\n\n# Custom sidebar templates, maps document names to template names.\n# html_sidebars = {}\n\n# Additional templates that should be rendered to pages, maps page names to\n# template names.\n# html_additional_pages = {}\n\n# If false, no module index is generated.\n# html_domain_indices = True\n\n# If false, no index is generated.\n# html_use_index = True\n\n# If true, the index is split into individual pages for each letter.\n# html_split_index = False\n\n# If true, links to the reST sources are added to the pages.\n# html_show_sourcelink = True\n\n# If true, \"Created using Sphinx\" is shown in the HTML footer. Default is True.\n# html_show_sphinx = True\n\n# If true, \"(C) Copyright ...\" is shown in the HTML footer. Default is True.\n# html_show_copyright = True\n\n# If true, an OpenSearch description file will be output, and all pages will\n# contain a <link> tag referring to it.  The value of this option must be the\n# base URL from which the finished HTML is served.\n# html_use_opensearch = ''\n\n# This is the file name suffix for HTML files (e.g. \".xhtml\").\n# html_file_suffix = None\n\n# Output file base name for HTML help builder.\nhtmlhelp_basename = \"django-bleach\"\n\n\n# -- Options for LaTeX output --------------------------------------------------\n\n# latex_elements = {\n# The paper size ('letterpaper' or 'a4paper').\n# 'papersize': 'letterpaper',\n\n# The font size ('10pt', '11pt' or '12pt').\n# 'pointsize': '10pt',\n\n# Additional stuff for the LaTeX preamble.\n# 'preamble': '',\n# }\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title, author, documentclass [howto/manual]).\nlatex_documents = [\n    (\n        \"index\",\n        \"django-bleach.tex\",\n        \"django-bleach Documentation\",\n        \"Mark Walker\",\n        \"manual\",\n    ),\n]\n\n# The name of an image file (relative to this directory) to place at the top of\n# the title page.\n# latex_logo = None\n\n# For \"manual\" documents, if this is true, then toplevel headings are parts,\n# not chapters.\n# latex_use_parts = False\n\n# If true, show page references after internal links.\n# latex_show_pagerefs = False\n\n# If true, show URL addresses after external links.\n# latex_show_urls = False\n\n# Documents to append as an appendix to all manuals.\n# latex_appendices = []\n\n# If false, no module index is generated.\n# latex_domain_indices = True\n\n\n# -- Options for manual page output --------------------------------------------\n\n# One entry per manual page. List of tuples\n# (source start file, name, description, authors, manual section).\nman_pages = [\n    (\n        \"index\",\n        \"django-bleach\",\n        \"django-bleach Documentation\",\n        [\"Mark Walker\"],\n        1,\n    )\n]\n\n# If true, show URL addresses after external links.\n# man_show_urls = False\n\n\n# -- Options for Texinfo output ------------------------------------------------\n\n# Grouping the document tree into Texinfo files. List of tuples\n# (source start file, target name, title, author,\n#  dir menu entry, description, category)\ntexinfo_documents = [\n    (\n        \"index\",\n        \"django-bleach\",\n        \"django-bleach Documentation\",\n        \"Mark Walker\",\n        \"django-bleach\",\n        \"One line description of project.\",\n        \"Miscellaneous\",\n    ),\n]\n\n# Documents to append as an appendix to all manuals.\n# texinfo_appendices = []\n\n# If false, no module index is generated.\n# texinfo_domain_indices = True\n\n# How to display URL addresses: 'footnote', 'no', or 'inline'.\n# texinfo_show_urls = 'footnote'\n"
  },
  {
    "path": "docs/index.rst",
    "content": ".. django-bleach documentation master file, created by\n   sphinx-quickstart on Tue Jun 19 10:24:12 2012.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\n``django-bleach``\n=======================\n\n``bleach`` is a Python module that takes any HTML input, and returns valid,\nsanitised HTML that contains only an allowed subset of HTML tags, attributes\nand styles. ``django-bleach`` is a Django app that makes using bleach extremely\neasy.\n\nContents:\n\n.. toctree::\n    :maxdepth: 2\n\n    setup\n    usage\n    settings\n"
  },
  {
    "path": "docs/requirements.in",
    "content": "furo\nMarkupSafe\nsphinx\nsphinx-autobuild\nsphinxext-opengraph\nsphinxcontrib-spelling\nsphinx-autobuild\n"
  },
  {
    "path": "docs/requirements.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.11\n# by the following command:\n#\n#    pip-compile\n#\nalabaster==0.7.13\n    # via sphinx\nbabel==2.13.1\n    # via sphinx\nbeautifulsoup4==4.12.2\n    # via furo\ncertifi==2023.11.17\n    # via requests\ncharset-normalizer==3.3.2\n    # via requests\ncolorama==0.4.6\n    # via sphinx-autobuild\ndocutils==0.20.1\n    # via sphinx\nfuro==2023.9.10\n    # via -r requirements.in\nidna==3.6\n    # via requests\nimagesize==1.4.1\n    # via sphinx\njinja2==3.1.2\n    # via sphinx\nlivereload==2.6.3\n    # via sphinx-autobuild\nmarkupsafe==2.1.3\n    # via\n    #   -r requirements.in\n    #   jinja2\npackaging==23.2\n    # via sphinx\npyenchant==3.2.2\n    # via sphinxcontrib-spelling\npygments==2.17.2\n    # via\n    #   furo\n    #   sphinx\nrequests==2.31.0\n    # via sphinx\nsix==1.16.0\n    # via livereload\nsnowballstemmer==2.2.0\n    # via sphinx\nsoupsieve==2.5\n    # via beautifulsoup4\nsphinx==7.2.6\n    # via\n    #   -r requirements.in\n    #   furo\n    #   sphinx-autobuild\n    #   sphinx-basic-ng\n    #   sphinxcontrib-applehelp\n    #   sphinxcontrib-devhelp\n    #   sphinxcontrib-htmlhelp\n    #   sphinxcontrib-qthelp\n    #   sphinxcontrib-serializinghtml\n    #   sphinxcontrib-spelling\n    #   sphinxext-opengraph\nsphinx-autobuild==2021.3.14\n    # via -r requirements.in\nsphinx-basic-ng==1.0.0b2\n    # via furo\nsphinxcontrib-applehelp==1.0.7\n    # via sphinx\nsphinxcontrib-devhelp==1.0.5\n    # via sphinx\nsphinxcontrib-htmlhelp==2.0.4\n    # via sphinx\nsphinxcontrib-jsmath==1.0.1\n    # via sphinx\nsphinxcontrib-qthelp==1.0.6\n    # via sphinx\nsphinxcontrib-serializinghtml==1.1.9\n    # via sphinx\nsphinxcontrib-spelling==8.0.0\n    # via -r requirements.in\nsphinxext-opengraph==0.9.0\n    # via -r requirements.in\ntornado==6.4\n    # via livereload\nurllib3==2.2.2\n    # via requests\n"
  },
  {
    "path": "docs/settings.rst",
    "content": ".. _settings:\n\n========\nSettings\n========\n\nConfiguring ``bleach``\n======================\n\nYou can configure how ``bleach`` acts for your whole project using the\nfollowing settings. These settings map directly to the ``bleach`` parameters of\nthe same name, so see the ``bleach`` `documentation` for more information. Each\nof these have a sensible default set by ``bleach``, and each of these are\ncompletely optional::\n\n    # Which HTML tags are allowed\n    BLEACH_ALLOWED_TAGS = ['p', 'b', 'i', 'u', 'em', 'strong', 'a']\n\n    # Which HTML attributes are allowed\n    BLEACH_ALLOWED_ATTRIBUTES = ['href', 'title', 'style']\n\n    # Which CSS properties are allowed in 'style' attributes (assuming style is\n    # an allowed attribute)\n    BLEACH_ALLOWED_STYLES = [\n        'font-family', 'font-weight', 'text-decoration', 'font-variant'\n    ]\n\n    # Which protocols (and pseudo-protocols) are allowed in 'src' attributes\n    # (assuming src is an allowed attribute)\n    BLEACH_ALLOWED_PROTOCOLS = [\n        'http', 'https', 'data'\n    ]\n\n    # Strip unknown tags if True, replace with HTML escaped characters if False\n    BLEACH_STRIP_TAGS = True\n\n    # Strip HTML comments, or leave them in.\n    BLEACH_STRIP_COMMENTS = False\n\nYou can override each of these for individual ``BleachField`` form and model\nfields if you need to. Simply pass in one of the following settings you want to\noverride as a named parameter to the ``BleachField``:\n\n* ``allowed_tags``\n* ``allowed_attributes``\n* ``allowed_protocols``\n* ``strip_tags``\n* ``strip_comments``\n* ``css_sanitizer``\n\nThe following argument will be deprecated in the near future:\n\n* ``allowed_styles``\n\nAn example, where blog posts should be allowed to contain images and headings::\n\n    # in app/models.py\n\n    from django import models\n    from django_bleach.models import BleachField\n\n    class Post(models.Model):\n\n        title = models.CharField()\n        content = BleachField(allowed_tags=[\n            'p', 'b', 'i', 'u', 'em', 'strong', 'a',\n            'img', 'h3', 'h4', 'h5', 'h6'])\n\nDefault form widget\n===================\n\nBy default, a ``BleachField`` will use a ``django.forms.Textarea`` widget. This\nis obviously not great for users. You can override this to use a custom widget\nin your project. You will probably want to use a WYSIWYG editor, or something\nsimilar::\n\n    BLEACH_DEFAULT_WIDGET = 'wysiwyg.widgets.WysiwygWidget'\n\nI use ``django-ckeditor`` in my projects, but what you use is up to you.\n\n\n.. _documentation: http://bleach.readthedocs.org/en/latest/index.html\n"
  },
  {
    "path": "docs/setup.rst",
    "content": "=====\nSetup\n=====\n\n.. _setup:\n\n1.  Get the source from the `Git repository`_ or install it from the Python\n    Package Index by running ``pip install django-bleach``.\n\n2.  Add ``django_bleach`` to the ``INSTALLED_APPS`` setting::\n\n        INSTALLED_APPS += (\n            'django_bleach',\n        )\n\n3. Configure ``django_bleach``. It comes with some sensible defaults, but you\n   will probably want to tweak the settings for your application. See the\n   :ref:`settings` page for more information\n\n3. Add a ``django_bleach.models.BleachField`` to a model, a\n   ``django_bleach.forms.BleachField`` to a form, or use the ``bleach``\n   template filter in your templates.\n\n.. _Git repository: https://github.com/marksweb/django-bleach/\n"
  },
  {
    "path": "docs/usage.rst",
    "content": ".. _usage:\n\n=====\nUsage\n=====\n\n.. _models:\n\nIn your models\n==============\n\n``django-bleach`` provides three ways of creating bleached output. The simplest\nway of including user-editable HTML content that is automatically sanitised is\nby using the BleachField model field::\n\n    # in app/models.py\n\n    from django import models\n    from django_bleach.models import BleachField\n\n    class Post(models.Model):\n\n        title = models.CharField()\n        content = BleachField()\n\n``BleachField`` takes the following arguments, to customise the output of\n``bleach``.\n\nSee the bleach documentation for their use:\n\n* ``allowed_tags``\n* ``allowed_attributes``\n* ``allowed_protocols``\n* ``strip_tags``\n* ``strip_comments``\n* ``css_sanitizer``\n\nThe following argument will be deprecated in the near future:\n\n* ``allowed_styles``\n\nIn addition to the bleach-specific arguments, the ``BleachField`` model field\naccepts all of the normal field attributes. Behind the scenes, it is a\n``TextField``, and accepts all the same arguments as ``TextField``.\n\nThe ``BleachField`` model field sanitises its value before it is saved to the\ndatabase and is marked safe so it can be immediately rendered in a template\nwithout further intervention.\n\nIn model forms, ``BleachField`` model field are represented with the\n``BleachField`` form field by default.\n\n.. _forms:\n\nIn your forms\n=============\n\nA ``BleachField`` form field is provided. This field sanitises HTML input from\nthe user, and presents safe, clean HTML to your Django application and the\nreturned value is marked safe for immediate rendering.\n\nUsually you will want to use a ``BleachField`` model field, as opposed to the\nform field, but if you want, you can just use the form field. One possible use\ncase for this set up is to force user input to be bleached, but allow\nadministrators to add any content they like via another form (e.g. the admin\nsite)::\n\n    # in app/forms.py\n\n    from django import forms\n    from django_bleach.forms import BleachField\n\n    from app.models import Post\n\n    class PostForm(forms.ModelForm):\n        class Meta:\n            model = Post\n\n            fields = ['title', 'content']\n\n        content = BleachField()\n\nThe ``BleachField`` form field takes exactly the same arguments as the\n``BleachField`` model field above.\n\n.. _templates:\n\nIn your templates\n=================\n\nIf you have a piece of content from somewhere that needs to be printed in a\ntemplate, you can use the ``bleach`` filter::\n\n    {% load bleach_tags %}\n\n    {{ some_unsafe_content|bleach }}\n\nIt uses the ``ALLOWED_TAGS`` setting in your application, or optionally,\n``bleach`` can pass tags::\n\n    {% load bleach_tags %}\n\n    {{ some_unsafe_content|bleach:\"p,span\" }}\n\nIf you have content which doesn't contain HTML, but contains links or email\naddresses, you can also use the ``bleach_linkify`` filter to convert\ncontent to links::\n\n\n    {% load bleach_tags %}\n\n    {{ some_safe_content|bleach_linkify }}\n\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[build-system]\n# Minimum requirements for the build system to execute.\nrequires = [\"setuptools\", \"wheel\"]  # PEP 508 specifications.\n\n[tool.black]\nline-length = 79\ntarget-version = [\"py311\"]\n\n[tool.coverage.run]\nbranch = true\nparallel = true\nomit = [\n  \"testproject/**\"\n]\n\n[tool.coverage.paths]\nsource = [\n  \"django_bleach\",\n  \".tox/**/site-packages\"\n]\n\n[tool.coverage.report]\nshow_missing = true\n\n[tool.ruff]\n# https://beta.ruff.rs/docs/configuration/\nline-length = 79\nselect = [\n  \"E\",  # pycodestyle errors\n  \"W\",  # pycodestyle warnings\n  \"F\",  # pyflakes\n  \"I\",  # isort\n  \"C\",  # flake8-comprehensions\n  \"B\",  # flake8-bugbear\n  \"Q\", # flake8-quotes\n  \"PLE\", # pylint error\n  \"PLR\", # pylint refactor\n  \"PLW\", # pylint warning\n  \"UP\", # pyupgrade\n]\n\nexclude = [\n  \".eggs\",\n  \".git\",\n  \".mypy_cache\",\n  \".ruff_cache\",\n  \".env\",\n  \".venv\",\n  \"**migrations/**\",\n  \"docs/**\",\n  \"node_modules\",\n  \"requirements\",\n  \"venv\",\n  \"testproject\",\n]\n\nignore = [\n  \"B006\",  # Do not use mutable data structures for argument defaults\n  \"B011\",  # tests use assert False\n  \"B019\",  # Use of `functools.lru_cache` or `functools.cache` on methods can lead to memory leaks\n  \"B905\",  # `zip()` without an explicit `strict=` parameter\n  \"C901\",  # too complex functions\n  \"E402\",  # module level import not at top of file\n  \"E731\",  # do not assign a lambda expression, use a def\n  \"PLR0911\",  # Too many return statements\n  \"PLR0912\",  # Too many branches\n  \"PLR0913\",  # Too many arguments to function call\n  \"PLR0915\",  # Too many statements\n  \"PLR2004\",  # Magic value used in comparison, consider replacing with a constant variable\n]\n\n[tool.ruff.per-file-ignores]\n\"__init__.py\" = [\n  \"F401\"  # unused-import\n]\n\n[tool.ruff.isort]\ncombine-as-imports = true\nknown-first-party = [\n  \"django_bleach\",\n]\nextra-standard-library = [\"dataclasses\"]\n"
  },
  {
    "path": "requirements/compile.py",
    "content": "#!/usr/bin/env python\nfrom __future__ import annotations\n\nimport os\nimport subprocess\nimport sys\nfrom pathlib import Path\n\nif __name__ == \"__main__\":\n    os.chdir(Path(__file__).parent)\n    os.environ[\"CUSTOM_COMPILE_COMMAND\"] = \"requirements/compile.py\"\n    os.environ[\"PIP_REQUIRE_VIRTUALENV\"] = \"0\"\n    common_args = [\n        \"-m\",\n        \"piptools\",\n        \"compile\",\n        \"--generate-hashes\",\n        \"--allow-unsafe\",\n    ] + sys.argv[1:]\n    # mysqlclient requirements found on each version's \"Databases\" documentation page:\n    # https://docs.djangoproject.com/en/3.0/ref/databases/#mysql-db-api-drivers\n    subprocess.run(\n        [\n            \"python3.8\",\n            *common_args,\n            \"-P\",\n            \"Django>=3.2a1,<3.3\",\n            \"-o\",\n            \"py38-django32.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.8\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.0a1,<4.1\",\n            \"-o\",\n            \"py38-django40.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.8\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.1a1,<4.2\",\n            \"-o\",\n            \"py38-django41.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.8\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.2a1,<5.0\",\n            \"-o\",\n            \"py38-django42.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.9\",\n            *common_args,\n            \"-P\",\n            \"Django>=3.2a1,<3.3\",\n            \"-o\",\n            \"py39-django32.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.9\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.0a1,<4.1\",\n            \"-o\",\n            \"py39-django40.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.9\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.1a1,<4.2\",\n            \"-o\",\n            \"py39-django41.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.9\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.2a1,<5.0\",\n            \"-o\",\n            \"py39-django42.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.10\",\n            *common_args,\n            \"-P\",\n            \"Django>=3.2a1,<3.3\",\n            \"-o\",\n            \"py310-django32.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.10\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.0a1,<4.1\",\n            \"-o\",\n            \"py310-django40.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.10\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.1a1,<4.2\",\n            \"-o\",\n            \"py310-django41.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.10\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.2a1,<5.0\",\n            \"-o\",\n            \"py310-django42.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.11\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.1a1,<4.2\",\n            \"-o\",\n            \"py311-django41.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.11\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.2a1,<5.0\",\n            \"-o\",\n            \"py311-django42.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n    subprocess.run(\n        [\n            \"python3.12\",\n            *common_args,\n            \"-P\",\n            \"Django>=4.2a1,<5.0\",\n            \"-o\",\n            \"py312-django42.txt\",\n        ],\n        check=True,\n        capture_output=True,\n    )\n"
  },
  {
    "path": "requirements/py310-django32.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.10\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py310-django40.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.10\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py310-django41.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.10\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py310-django42.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.10\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py311-django41.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.11\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py311-django42.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.11\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py312-django42.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.12\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py38-django32.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.8\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py38-django40.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.8\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py38-django41.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.8\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py38-django42.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.8\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py39-django32.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.9\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py39-django40.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.9\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py39-django41.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.9\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/py39-django42.txt",
    "content": "#\n# This file is autogenerated by pip-compile with Python 3.9\n# by the following command:\n#\n#    requirements/compile.py\n#\nbleach==5.0.1 \\\n    --hash=sha256:085f7f33c15bd408dd9b17a4ad77c577db66d76203e5984b1bd59baeee948b2a \\\n    --hash=sha256:0d03255c47eb9bd2f26aa9bb7f2107732e7e8fe195ca2f64709fcf3b0a4a085c\n    # via -r requirements.in\ncoverage[toml]==7.2.7 \\\n    --hash=sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f \\\n    --hash=sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2 \\\n    --hash=sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a \\\n    --hash=sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a \\\n    --hash=sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01 \\\n    --hash=sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6 \\\n    --hash=sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7 \\\n    --hash=sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f \\\n    --hash=sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02 \\\n    --hash=sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c \\\n    --hash=sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063 \\\n    --hash=sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a \\\n    --hash=sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5 \\\n    --hash=sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959 \\\n    --hash=sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97 \\\n    --hash=sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6 \\\n    --hash=sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f \\\n    --hash=sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9 \\\n    --hash=sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5 \\\n    --hash=sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f \\\n    --hash=sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562 \\\n    --hash=sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe \\\n    --hash=sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9 \\\n    --hash=sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f \\\n    --hash=sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb \\\n    --hash=sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb \\\n    --hash=sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1 \\\n    --hash=sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb \\\n    --hash=sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250 \\\n    --hash=sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e \\\n    --hash=sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511 \\\n    --hash=sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5 \\\n    --hash=sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59 \\\n    --hash=sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2 \\\n    --hash=sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d \\\n    --hash=sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3 \\\n    --hash=sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4 \\\n    --hash=sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de \\\n    --hash=sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9 \\\n    --hash=sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833 \\\n    --hash=sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0 \\\n    --hash=sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9 \\\n    --hash=sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d \\\n    --hash=sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050 \\\n    --hash=sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d \\\n    --hash=sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6 \\\n    --hash=sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353 \\\n    --hash=sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb \\\n    --hash=sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e \\\n    --hash=sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8 \\\n    --hash=sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495 \\\n    --hash=sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2 \\\n    --hash=sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd \\\n    --hash=sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27 \\\n    --hash=sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1 \\\n    --hash=sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818 \\\n    --hash=sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4 \\\n    --hash=sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e \\\n    --hash=sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850 \\\n    --hash=sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3\n    # via -r requirements.in\nmock==5.1.0 \\\n    --hash=sha256:18c694e5ae8a208cdb3d2c20a993ca1a7b0efa258c247a1e565150f477f83744 \\\n    --hash=sha256:5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d\n    # via -r requirements.in\nsix==1.16.0 \\\n    --hash=sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926 \\\n    --hash=sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254\n    # via bleach\ntinycss2==1.2.1 \\\n    --hash=sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847 \\\n    --hash=sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627\n    # via -r requirements.in\ntomli==2.0.1 \\\n    --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \\\n    --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f\n    # via coverage\nwebencodings==0.5.1 \\\n    --hash=sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78 \\\n    --hash=sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923\n    # via\n    #   bleach\n    #   tinycss2\n"
  },
  {
    "path": "requirements/requirements.in",
    "content": "bleach>=5,<6\ncoverage[toml]\nmock\ntinycss2\n"
  },
  {
    "path": "requirements.in",
    "content": "bump2version\npip-tools\npre-commit\ntox\nwheel\n"
  },
  {
    "path": "requirements.txt",
    "content": "#\n# This file is autogenerated by pip-compile with python 3.9\n# To update, run:\n#\n#    pip-compile\n#\nbump2version==1.0.1\n    # via -r requirements.in\ncfgv==3.3.1\n    # via pre-commit\nclick==8.0.3\n    # via pip-tools\ndistlib==0.3.4\n    # via virtualenv\nfilelock==3.4.2\n    # via\n    #   tox\n    #   virtualenv\nidentify==2.4.2\n    # via pre-commit\nnodeenv==1.6.0\n    # via pre-commit\npackaging==21.3\n    # via tox\npep517==0.12.0\n    # via pip-tools\npip-tools==6.4.0\n    # via -r requirements.in\nplatformdirs==2.4.1\n    # via virtualenv\npluggy==1.0.0\n    # via tox\npre-commit==2.16.0\n    # via -r requirements.in\npy==1.11.0\n    # via tox\npyparsing==3.0.6\n    # via packaging\npyyaml==6.0\n    # via pre-commit\nsix==1.16.0\n    # via\n    #   tox\n    #   virtualenv\ntoml==0.10.2\n    # via\n    #   pre-commit\n    #   tox\ntomli==2.0.0\n    # via pep517\ntox==3.24.5\n    # via -r requirements.in\nvirtualenv==20.13.0\n    # via\n    #   pre-commit\n    #   tox\nwheel==0.38.1\n    # via\n    #   -r requirements.in\n    #   pip-tools\n\n# The following packages are considered to be unsafe in a requirements file:\n# pip\n# setuptools\n"
  },
  {
    "path": "setup.cfg",
    "content": "[bumpversion]\ncurrent_version = 3.1.0\ncommit = True\ntag = False\n\n[bumpversion:file:django_bleach/__init__.py]\nsearch = __version__ = \"{current_version}\"\nreplace = __version__ = \"{new_version}\"\n\n[bumpversion:file:docs/conf.py]\nsearch = version = \"{current_version}\"\nreplace = version = \"{new_version}\"\n\n[bumpversion:file:CHANGELOG.md]\nsearch = \n\t[unreleased](https://github.com/marksweb/django-bleach/compare/{current_version}...master) changes\n\t-------------------------------------------------------------------------------------\nreplace = \n\t[unreleased](https://github.com/marksweb/django-bleach/compare/{new_version}...master) changes\n\t-------------------------------------------------------------------------------------\n\t\n\tVersion {new_version}\n\t=============\n\t**{utcnow:%%d-%%m-%%Y}**\n\n[bdist_wheel]\nuniversal = 1\n\n[codespell]\nskip = ./.git,./.env,./.venv,./.tox,./.eggs,./django_bleach/tests,./docs/_build,./testproject,./htmlcov\ncount = \nquiet-level = 3\n"
  },
  {
    "path": "setup.py",
    "content": "#!/usr/bin/env python\nimport codecs\nimport os\nimport re\n\nfrom setuptools import find_packages, setup\n\ntry:\n    from sphinx.setup_command import BuildDoc\nexcept ImportError:\n    BuildDoc = None\n\n\ndef read(*parts):\n    file_path = os.path.join(os.path.dirname(__file__), *parts)\n    return codecs.open(file_path, encoding=\"utf-8\").read()\n\n\ndef find_variable(variable, *parts):\n    version_file = read(*parts)\n    version_match = re.search(\n        rf\"^{variable} = ['\\\"]([^'\\\"]*)['\\\"]\", version_file, re.M\n    )\n    if version_match:\n        return str(version_match.group(1))\n    raise RuntimeError(\"Unable to find version string.\")\n\n\nname = \"django-bleach\"\nrelease = find_variable(\"__version__\", \"django_bleach\", \"__init__.py\")\nversion = release.rstrip(\".\")\n\nsetup(\n    name=name,\n    version=version,\n    description=\"Easily use bleach with Django models and templates\",\n    long_description=read(\"README.rst\"),\n    long_description_content_type=\"text/x-rst\",\n    author=\"Tim Heap\",\n    maintainer=\"Mark Walker\",\n    maintainer_email=\"theshow+django-bleach@gmail.com\",\n    url=\"https://github.com/marksweb/django-bleach\",\n    license=\"MIT\",\n    packages=find_packages(exclude=(\"testproject*\",)),\n    install_requires=[\n        \"bleach[css]>=5,<6\",\n        \"Django>=3.2\",\n    ],\n    python_requires=\">=3.8\",\n    tests_require=[\"bleach[css]>=5,<6\", \"mock\", \"sphinx\", \"tox\"],\n    cmdclass={\n        \"build_sphinx\": BuildDoc,\n    },\n    command_options={\n        \"build_sphinx\": {\n            \"project\": (\"setup.py\", name),\n            \"version\": (\"setup.py\", version),\n            \"release\": (\"setup.py\", release),\n            \"source_dir\": (\"setup.py\", \"docs\"),\n            \"build_dir\": (\"setup.py\", \"./docs/_build\"),\n        }\n    },\n    package_data={},\n    classifiers=[\n        \"Environment :: Web Environment\",\n        \"Intended Audience :: Developers\",\n        \"License :: OSI Approved :: MIT License\",\n        \"Operating System :: OS Independent\",\n        \"Programming Language :: Python\",\n        \"Programming Language :: Python :: 3 :: Only\",\n        \"Programming Language :: Python :: 3.8\",\n        \"Programming Language :: Python :: 3.9\",\n        \"Programming Language :: Python :: 3.10\",\n        \"Programming Language :: Python :: 3.11\",\n        \"Programming Language :: Python :: 3.12\",\n        \"Framework :: Django :: 3.2\",\n        \"Framework :: Django :: 4.0\",\n        \"Framework :: Django :: 4.1\",\n        \"Framework :: Django :: 4.2\",\n        \"Development Status :: 5 - Production/Stable\",\n    ],\n    project_urls={\n        \"Documentation\": \"https://django-bleach.readthedocs.io/\",\n        \"Release notes\": \"https://github.com/marksweb/django-bleach/blob/main/CHANGELOG.md\",\n        \"Issues\": \"https://github.com/marksweb/django-bleach/issues\",\n        \"Source\": \"https://github.com/marksweb/django-bleach\",\n    },\n)\n"
  },
  {
    "path": "testproject/__init__.py",
    "content": ""
  },
  {
    "path": "testproject/constants.py",
    "content": "ALLOWED_ATTRIBUTES = {\"*\": [\"class\", \"style\"], \"a\": [\"href\", \"title\"]}\n\nALLOWED_CSS_PROPERTIES = [\"color\"]\n\nALLOWED_PROTOCOLS = [\n    \"https\",\n    \"data\",\n]\n\nALLOWED_STYLES = ALLOWED_CSS_PROPERTIES\n\nALLOWED_TAGS = [\"a\", \"li\", \"ul\"]\n"
  },
  {
    "path": "testproject/forms.py",
    "content": "from django import forms\n\nfrom bleach.css_sanitizer import CSSSanitizer\n\nfrom django_bleach.forms import BleachField\nfrom testproject.constants import (\n    ALLOWED_ATTRIBUTES,\n    ALLOWED_CSS_PROPERTIES,\n    ALLOWED_PROTOCOLS,\n    ALLOWED_STYLES,\n    ALLOWED_TAGS,\n)\nfrom testproject.models import Person\n\n\nclass CustomBleachWidget(forms.Textarea):\n    def __init__(self, attrs=None):\n        default_attrs = {\"rows\": 15, \"cols\": 60}\n        default_attrs.update(attrs or {})\n        super().__init__(attrs=default_attrs)\n\n\nclass BleachForm(forms.Form):\n    \"\"\"Form for testing BleachField\"\"\"\n\n    no_tags = BleachField(max_length=100, strip_tags=True, allowed_tags=[])\n\n    no_strip = BleachField(\n        max_length=100, allowed_tags=None, allowed_attributes=None\n    )\n\n    bleach_strip = BleachField(\n        max_length=100,\n        strip_comments=True,\n        strip_tags=True,\n        allowed_tags=ALLOWED_TAGS,\n    )\n    bleach_attrs = BleachField(\n        max_length=100,\n        strip_tags=False,\n        allowed_tags=ALLOWED_TAGS,\n        allowed_protocols=ALLOWED_PROTOCOLS,\n        allowed_attributes=ALLOWED_ATTRIBUTES,\n    )\n    bleach_styles = BleachField(\n        max_length=100,\n        strip_tags=False,\n        allowed_attributes=[\"style\"],\n        allowed_tags=ALLOWED_TAGS,\n        allowed_styles=ALLOWED_STYLES,\n    )\n    bleach_css_sanitizer = BleachField(\n        max_length=100,\n        strip_tags=False,\n        allowed_attributes=[\"style\"],\n        allowed_tags=ALLOWED_TAGS,\n        css_sanitizer=CSSSanitizer(\n            allowed_css_properties=ALLOWED_CSS_PROPERTIES\n        ),\n    )\n\n\nclass PersonForm(forms.ModelForm):\n    class Meta:\n        model = Person\n        fields = \"__all__\"\n"
  },
  {
    "path": "testproject/manage.py",
    "content": "#!/usr/bin/env python\nimport sys\nimport os\n\ntry:\n    from django.core.management import execute_manager\n\n    OLD_DJANGO = True\nexcept ImportError:\n    from django.core.management import execute_from_command_line\n\n    OLD_DJANGO = False\n\nif OLD_DJANGO:\n    try:\n        import settings  # Assumed to be in the same directory.\n    except ImportError:\n        sys.stderr.write(\n            \"Error: Can't find the file 'settings.py' in the directory containing %r. \"\n            \"It appears you've customized things.\\nYou'll have to run django-admin.py, \"\n            \"passing it your settings module.\\n(If the file settings.py does indeed exist, \"\n            \"it's causing an ImportError somehow.)\\n\" % __file__\n        )\n        sys.exit(1)\n\nBASEDIR = os.path.abspath(os.path.join(os.path.dirname(__file__), \"..\"))\nsys.path.insert(0, BASEDIR)\n\nif __name__ == \"__main__\":\n    os.environ[\"DJANGO_SETTINGS_MODULE\"] = \"testproject.settings\"\n    if OLD_DJANGO:\n        execute_manager(settings)\n    else:\n        execute_from_command_line(sys.argv)\n"
  },
  {
    "path": "testproject/migrations/0001_initial.py",
    "content": "# Generated by Django 3.2.4 on 2021-06-15 12:39\n\nfrom django.db import migrations, models\nimport django_bleach.models\n\n\nclass Migration(migrations.Migration):\n    initial = True\n\n    dependencies = []\n\n    operations = [\n        migrations.CreateModel(\n            name=\"Person\",\n            fields=[\n                (\n                    \"id\",\n                    models.AutoField(\n                        auto_created=True,\n                        primary_key=True,\n                        serialize=False,\n                        verbose_name=\"ID\",\n                    ),\n                ),\n                (\"name\", models.CharField(max_length=20)),\n                (\n                    \"biography\",\n                    django_bleach.models.BleachField(\n                        max_length=100, verbose_name=\"Person biography\"\n                    ),\n                ),\n            ],\n        ),\n    ]\n"
  },
  {
    "path": "testproject/migrations/__init__.py",
    "content": ""
  },
  {
    "path": "testproject/models.py",
    "content": "from django.db import models\n\nfrom bleach.css_sanitizer import CSSSanitizer\n\nfrom django_bleach.models import BleachField\n\n\nclass Person(models.Model):\n    name = models.CharField(max_length=20)\n    biography = BleachField(\n        max_length=100,\n        verbose_name=\"Person biography\",\n        allowed_tags=[\"p\", \"a\", \"li\", \"ul\", \"strong\"],\n        allowed_attributes=[\"class\", \"href\", \"style\"],\n        allowed_protocols=[\"http\", \"https\"],\n        css_sanitizer=CSSSanitizer(\n            allowed_css_properties=[\"color\", \"background-color\"]\n        ),\n    )\n"
  },
  {
    "path": "testproject/requirements.in",
    "content": "bleach\ndjango\ncoverage\nmock\nflake8\nflake8-broken-line\nflake8-bugbear\nflake8-builtins\nflake8-commas\nflake8-comprehensions\nflake8-eradicate\nflake8-quotes\nflake8-tidy-imports\npep8-naming\npip-tools\nsphinx\nsphinx-rtd-theme\n"
  },
  {
    "path": "testproject/requirements.txt",
    "content": "#\n# This file is autogenerated by pip-compile with python 3.9\n# To update, run:\n#\n#    pip-compile\n#\nalabaster==0.7.12\n    # via sphinx\nasgiref==3.6.0\n    # via django\nattrs==21.4.0\n    # via\n    #   flake8-bugbear\n    #   flake8-eradicate\nbabel==2.9.1\n    # via sphinx\nbleach==5.0.0\n    # via -r requirements.in\ncertifi==2022.12.7\n    # via requests\ncharset-normalizer==2.0.10\n    # via requests\nclick==8.0.3\n    # via pip-tools\ncoverage==6.2\n    # via -r requirements.in\ndjango==4.1.9\n    # via -r requirements.in\ndocutils==0.17.1\n    # via\n    #   sphinx\n    #   sphinx-rtd-theme\neradicate==2.0.0\n    # via flake8-eradicate\nflake8==4.0.1\n    # via\n    #   -r requirements.in\n    #   flake8-broken-line\n    #   flake8-bugbear\n    #   flake8-builtins\n    #   flake8-commas\n    #   flake8-comprehensions\n    #   flake8-eradicate\n    #   flake8-polyfill\n    #   flake8-quotes\n    #   flake8-tidy-imports\n    #   pep8-naming\nflake8-broken-line==0.4.0\n    # via -r requirements.in\nflake8-bugbear==21.11.29\n    # via -r requirements.in\nflake8-builtins==1.5.3\n    # via -r requirements.in\nflake8-commas==2.1.0\n    # via -r requirements.in\nflake8-comprehensions==3.7.0\n    # via -r requirements.in\nflake8-eradicate==1.2.0\n    # via -r requirements.in\nflake8-polyfill==1.0.2\n    # via pep8-naming\nflake8-quotes==3.3.1\n    # via -r requirements.in\nflake8-tidy-imports==4.5.0\n    # via -r requirements.in\nidna==3.3\n    # via requests\nimagesize==1.3.0\n    # via sphinx\njinja2==3.0.3\n    # via sphinx\nmarkupsafe==2.0.1\n    # via jinja2\nmccabe==0.6.1\n    # via flake8\nmock==4.0.3\n    # via -r requirements.in\npackaging==21.3\n    # via sphinx\npep517==0.12.0\n    # via pip-tools\npep8-naming==0.12.1\n    # via -r requirements.in\npip-tools==6.4.0\n    # via -r requirements.in\npycodestyle==2.8.0\n    # via flake8\npyflakes==2.4.0\n    # via flake8\npygments==2.15.0\n    # via sphinx\npyparsing==3.0.6\n    # via packaging\npytz==2021.3\n    # via babel\nrequests==2.32.0\n    # via sphinx\nsix==1.16.0\n    # via bleach\nsnowballstemmer==2.2.0\n    # via sphinx\nsphinx==4.3.2\n    # via\n    #   -r requirements.in\n    #   sphinx-rtd-theme\nsphinx-rtd-theme==1.0.0\n    # via -r requirements.in\nsphinxcontrib-applehelp==1.0.2\n    # via sphinx\nsphinxcontrib-devhelp==1.0.2\n    # via sphinx\nsphinxcontrib-htmlhelp==2.0.0\n    # via sphinx\nsphinxcontrib-jsmath==1.0.1\n    # via sphinx\nsphinxcontrib-qthelp==1.0.3\n    # via sphinx\nsphinxcontrib-serializinghtml==1.1.5\n    # via sphinx\nsqlparse==0.4.4\n    # via django\ntomli==2.0.0\n    # via pep517\nurllib3==1.26.7\n    # via requests\nwebencodings==0.5.1\n    # via bleach\nwheel==0.38.1\n    # via pip-tools\n\n# The following packages are considered to be unsafe in a requirements file:\n# pip\n# setuptools\n"
  },
  {
    "path": "testproject/settings.py",
    "content": "import os\nimport sys\n\n\nSITE_ID = 1\n\nPROJECT_PATH = os.path.abspath(os.path.dirname(__file__))\n\nPYTHON_VERSION = \"%s.%s\" % sys.version_info[:2]\n\n\nDATABASES = {\n    \"default\": {\n        \"ENGINE\": \"django.db.backends.sqlite3\",\n        \"NAME\": os.path.join(PROJECT_PATH, \"django-bleach.db\"),\n    }\n}\nDEFAULT_AUTO_FIELD = \"django.db.models.AutoField\"\nDATABASE_SUPPORTS_TRANSACTIONS = True\n\nINSTALLED_APPS = [\n    \"django.contrib.auth\",\n    \"django.contrib.admin\",\n    \"django.contrib.contenttypes\",\n    \"django.contrib.sessions\",\n    \"django.contrib.sites\",\n    \"django.contrib.messages\",\n    \"django_bleach\",\n    \"testproject\",\n]\n\nLANGUAGE_CODE = \"en\"\n\nLANGUAGES = ((\"en\", \"English\"),)\n\nROOT_URLCONF = \"testproject.urls\"\n\nDEBUG = True\n\nTEMPLATES = [\n    {\n        \"BACKEND\": \"django.template.backends.django.DjangoTemplates\",\n        \"APP_DIRS\": True,\n        \"OPTIONS\": {\n            \"debug\": False,\n            \"context_processors\": (\n                \"django.contrib.auth.context_processors.auth\",\n                \"django.template.context_processors.debug\",\n                \"django.template.context_processors.i18n\",\n                \"django.template.context_processors.media\",\n                \"django.template.context_processors.request\",\n                \"django.template.context_processors.static\",\n                \"django.template.context_processors.tz\",\n                \"django.contrib.messages.context_processors.messages\",\n            ),\n        },\n        \"DIRS\": (\"templates\",),\n    },\n]\n\nUSE_TZ = True\nSECRET_KEY = \"blah\"\n\nMIDDLEWARE = (\n    \"django.contrib.sessions.middleware.SessionMiddleware\",\n    \"django.contrib.auth.middleware.AuthenticationMiddleware\",\n    \"django.contrib.messages.middleware.MessageMiddleware\",\n)\n\n# BLEACH_DEFAULT_WIDGET = 'testproject.forms.CustomBleachWidget'\n"
  },
  {
    "path": "testproject/templates/home.html",
    "content": "<body>\n    <h2>Form example</h2>\n    <form action=\".\" method=\"post\">\n        {% csrf_token %}\n\n        {{ form.errors }}\n        {{ form.as_p }}\n\n        <div>\n            <input type=\"submit\" value=\"Submit\" />\n        </div>\n    </form>\n    <a href=\"{% url 'model_form' %}\">Model form example(Note: you need to migrate database to use it)</a>\n</body>"
  },
  {
    "path": "testproject/templates/model_form.html",
    "content": "{% load bleach_tags %}\n\n<style>\n    table {\n         width: 100%;\n    }\n\n    td, th {\n        border: 1px solid #dddddd;\n        padding: 8px;\n    }\n</style>\n\n<body>\n    <h2>Model form example</h2>\n    <strong>Note: You must migrate project to add person!</strong>\n\n    <form action=\"/model_form\" method=\"post\">\n        {% csrf_token %}\n\n        {{ form.errors }}\n        {{ form.as_p }}\n\n        <div>\n            <input type=\"submit\" value=\"Submit\" />\n        </div>\n    </form>\n\n    <div>\n        <h3>People list</h3>\n        <table>\n            <tbody>\n                <tr>\n                    <th>Name</th>\n                    <th>Biography</th>\n                </tr>\n                {% for person in people %}\n                    <tr>\n                        <td>{{person.name}}</td>\n                        <td>{{person.biography|safe}}</td>\n                    </tr>\n                {% endfor %}\n            </tbody>\n        </table>\n    </div>\n\n    <a href=\"{% url 'home' %}\">Form example</a>\n</body>\n"
  },
  {
    "path": "testproject/urls.py",
    "content": "from django.urls import path\n\nfrom .views import home, model_form\n\n\nurlpatterns = [\n    path(\"\", home, name=\"home\"),\n    path(\"model_form/\", model_form, name=\"model_form\"),\n]\n"
  },
  {
    "path": "testproject/views.py",
    "content": "from django.db import OperationalError\nfrom django.http import HttpResponseRedirect\nfrom django.shortcuts import render\n\nfrom .forms import BleachForm, PersonForm\nfrom .models import Person\n\n\ndef home(request):\n    if request.POST:\n        form = BleachForm(request.POST)\n        if form.is_valid():\n            return HttpResponseRedirect(request.path + \"?ok\")\n    else:\n        form = BleachForm()\n\n    return render(request, \"home.html\", {\"form\": form})\n\n\ndef model_form(request):\n    if request.POST:\n        form = PersonForm(request.POST)\n        if form.is_valid():\n            form.save()\n            return HttpResponseRedirect(\"?ok\")\n    else:\n        form = PersonForm()\n        try:\n            people = list(Person.objects.all())\n        except OperationalError:\n            people = []\n\n        return render(\n            request,\n            \"model_form.html\",\n            {\n                \"form\": form,\n                \"people\": people,\n            },\n        )\n"
  },
  {
    "path": "tox.ini",
    "content": "[tox]\nrequires =\n    tox>=4.2\nenv_list =\n    py312-django{42}\n    py311-django{42, 41}\n    py310-django{42, 41, 40, 32}\n    py39-django{42, 41, 40, 32}\n    py38-django{42, 41, 40, 32}\n\n[testenv]\npackage = wheel\ndeps =\n    -r {toxinidir}/requirements/{envname}.txt\nset_env =\n    PYTHONDEVMODE = 1\n    PYTHONDONTWRITEBYTECODE=1\ncommands =\n    python \\\n      -W error::ResourceWarning \\\n      -W error::DeprecationWarning \\\n      -W error::PendingDeprecationWarning \\\n      -m coverage run testproject/manage.py test django_bleach\n"
  }
]