Skip to main content

Django integration with for nh3, Python binding to Ammonia HTML sanitizer Rust crate.

Project description

actions pypi black pre-commit

Django integration with for nh3, Python binding to Ammonia HTML sanitizer Rust crate.

nh3 docs

Requirements

Python 3.10 to 3.13 supported.

Django 3.2 to 5.1 supported.

Installation

pip install django-nh3

Usage

project/settings.py

INSTALLED_APPS = [
    # ...
    "django_nh3",
    # ...
]


def custom_attributes_filter(tag: str, attribute: str, value: str) -> str | None:
    return value


NH3_ALLOWED_ATTRIBUTES = {
    "h1": {"class"},
    "h2": {"class"},
    "h3": {"class"},
}  # default: {}
NH3_ALLOWED_ATTRIBUTES_FILTER = custom_attributes_filter  # default: None
NH3_CLEAN_CONTENT_TAGS = {"style"}  # default: set()
NH3_LINK_REL = "noopener"  # default: ""
NH3_STRIP_COMMENTS = True  # default: False
NH3_ALLOWED_TAGS = {"h1", "h2", "h3"}  # default: set()

apps/your_app/models.py

from django.db import models
from django.forms import ModelForm
from django.utils.safestring import SafeString
from django_nh3.models import Nh3Field


# get settings from settings.py
class YourModel(models.Model):
    # ...
    content = Nh3Field()
    # ...


def your_attributes_filter(tag: str, attribute: str, value: str) -> str | None:
    if attribute == "class":
        return "custom-class"
    return None


# set custom settings
class YourModelCustom(models.Model):
    # ...
    content = Nh3Field(
        attributes={"h1": {"class"}, "h2": {"class"}, "h3": {"class"}},
        attribute_filter=your_attributes_filter,
        clean_content_tags={"style"},
        link_rel="stylesheet",
        strip_comments=True,
        tags={"h1", "h2", "h3"},
    )
    # ...

Contributing

The project is in it’s infancy, setup because of bleach becoming deprecated.

It is setup with pre-commit to maintain code quality. This includes black for formatting, ruff for linting & checks. This is much like django, so currently referring to django’s own style docs will be most helpful

To contribute, fork the repo and clone your fork to your machine. Then setup a virtual environment however you prefer to do this. Then run the following setup the basics:

python -m pip install pre-commit tox-uv
pre-commit install

Tox is used to run tests locally and on github. The test requirements are generated using pip-tools via requirements/compile.py.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_nh3-0.3.1.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_nh3-0.3.1-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file django_nh3-0.3.1.tar.gz.

File metadata

  • Download URL: django_nh3-0.3.1.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_nh3-0.3.1.tar.gz
Algorithm Hash digest
SHA256 5682981d5aeff0577ada7414a57e7a0fd1f59a2ca682c5408d0b197aec8d5d80
MD5 9063fab59d979f82e38c3840e43ee9f1
BLAKE2b-256 73898a38f9325e794de02b386e5596bc14921a67484a6c15c82946ff3a104d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_nh3-0.3.1.tar.gz:

Publisher: publish-to-live-pypi.yml on marksweb/django-nh3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_nh3-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: django_nh3-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for django_nh3-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 858444153cc3073a741951fdf7b108785d2a267fc98dc1401b6e7206fc13e524
MD5 59d5a019a6cc522cb4361beb25359823
BLAKE2b-256 11dd65a4ff54541caec25cc794efa2835bfab8cd5fb12beb8f6349a6d238f370

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_nh3-0.3.1-py3-none-any.whl:

Publisher: publish-to-live-pypi.yml on marksweb/django-nh3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page