Skip to main content

Use markup_fmt, the extremely fast HTML formatter, with Django.

Project description

django-prettify-html

Use markup_fmt, the extremely fast HTML formatter, with Django.

Provides a Django middleware that automatically prettifies HTML responses for readable "View Source" output during development — the counterpart to django-minify-html for production.

Powered by Rust via PyO3 — no subprocess overhead, no Node.js dependency.

Requirements

  • Python 3.10 to 3.14
  • Django 4.2 to 6.0

Installation

pip install django-prettify-html

Setup

  1. Add to your INSTALLED_APPS:
INSTALLED_APPS = [
    ...,
    "django_prettify_html",
    ...,
]
  1. Add the middleware (typically last, or in place of a minification middleware):
MIDDLEWARE = [
    ...,
    "django_prettify_html.middleware.PrettifyHtmlMiddleware",
]

Usage

The middleware prettifies all non-streaming, non-encoded HTML responses.

Customizing options

Subclass the middleware and override format_args:

from django_prettify_html.middleware import PrettifyHtmlMiddleware

class ProjectPrettifyHtmlMiddleware(PrettifyHtmlMiddleware):
    format_args = PrettifyHtmlMiddleware.format_args | {
        "indent_width": 4,
        "print_width": 100,
    }

Skipping specific views

from django_prettify_html.decorators import no_html_prettification

@no_html_prettification
def raw_view(request):
    return HttpResponse("<pre>unformatted</pre>")

Using the formatter directly

from django_prettify_html import format

html = "<div><p>Hello</p></div>"
pretty = format(html, indent_width=2, print_width=80)

Available options

Option Type Default Description
language str "html" Language: html, jinja, vue, svelte, astro, angular, vento, mustache, xml
print_width int 80 Maximum line width before wrapping
indent_width int 2 Number of spaces per indent level
use_tabs bool False Use tabs instead of spaces
line_break str "lf" Line break style: "lf" or "crlf"
quotes str "double" Attribute quote style: "double" or "single"
format_comments bool False Format HTML comments
closing_bracket_same_line bool False Keep closing bracket on same line as last attribute
max_attrs_per_line int|None None Maximum attributes per line (None = unlimited)
prefer_attrs_single_line bool False Prefer all attributes on a single line when possible
html_normal_self_closing bool|None None Self-close normal HTML elements
html_void_self_closing bool|None None Self-close void elements (br, img, etc.)
whitespace_sensitivity str "css" Whitespace handling: "css", "strict", or "ignore"
doctype_keyword_case str "ignore" DOCTYPE keyword case: "ignore", "upper", or "lower"

Recommended setup: minify in production, prettify in development

# settings/base.py
MIDDLEWARE = [
    ...,
    "myapp.middleware.MinifyMiddleware",  # production minification
]

# settings/development.py
MIDDLEWARE = [
    "django_prettify_html.middleware.PrettifyHtmlMiddleware" if m == "myapp.middleware.MinifyMiddleware" else m
    for m in MIDDLEWARE
]

License

MIT

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_prettify_html-0.1.1.tar.gz (8.7 kB view details)

Uploaded Source

Built Distributions

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

django_prettify_html-0.1.1-cp314-cp314-win_amd64.whl (411.9 kB view details)

Uploaded CPython 3.14Windows x86-64

django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (483.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

django_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (524.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

django_prettify_html-0.1.1-cp313-cp313-win_amd64.whl (411.9 kB view details)

Uploaded CPython 3.13Windows x86-64

django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (483.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

django_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (524.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

django_prettify_html-0.1.1-cp312-cp312-win_amd64.whl (412.4 kB view details)

Uploaded CPython 3.12Windows x86-64

django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (483.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

django_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (525.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

django_prettify_html-0.1.1-cp311-cp311-win_amd64.whl (413.8 kB view details)

Uploaded CPython 3.11Windows x86-64

django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (485.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

django_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (526.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

django_prettify_html-0.1.1-cp310-cp310-win_amd64.whl (413.6 kB view details)

Uploaded CPython 3.10Windows x86-64

django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (485.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

django_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (526.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file django_prettify_html-0.1.1.tar.gz.

File metadata

  • Download URL: django_prettify_html-0.1.1.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for django_prettify_html-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b5a0b04b3eb00e49766651dfb5a9521a5cd0f8a9c71f957f1ac07da6e5e95d89
MD5 862021c42ea5950e8511ea9fa8258caa
BLAKE2b-256 71dc6e0864a434ff19327014baa2d5305600827b4107a731bc76d26ed36b4306

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1.tar.gz:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ca80c513800440d4c6268bb5a1111f7f2dac4b83e73049eff94f90c0f5bdff78
MD5 03b4f5131b5becc488e9f672d69e136f
BLAKE2b-256 51786098e0dfc42219338a6b4417614610df29fe65e51e38710c57704d9196ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec2482ae589086ad2471f24d07b203f36592eddc2652f75417a51f4aaa1d462e
MD5 f155c51fedb3aff4c11d66485bfc8fd0
BLAKE2b-256 3670964866094c16b672ba64814a6cbdd4a20c0f05f795501e02b5f7b91a93a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b07a9c6ae146d3e3b4cb7f2826be358b0959548af53b39ea0f788858faa23c0
MD5 5e37d083424b0f915e8b56d8e2038761
BLAKE2b-256 378dea79f729f50c5bc64ef9aef4787496ebb4bd142784a02c4227bc84f89a30

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa3f0020e793c9c130c20c9752f703bddaeaef500e1d5194accc302b987730e
MD5 4f5a043d8a4ff16114a3b85e80c6a8ca
BLAKE2b-256 301d2e6c56f81c630d750da5de92e3918324a6d170258aec70c0d1370e930f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f26a88437e4022a3c4e5ba5dbf00603dfd40d2b476b5211819f0de8c27455d46
MD5 f675ed42c3b1d9b79a0b2433c69f829e
BLAKE2b-256 6425b77c2276d09f071f3448046fe250a196dc7396c7e6e433c67ff9fada372d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1166b4c8bcc2b76b3bb6791cf58f018199f81b6d1993d1fb47ac2c72b4c87302
MD5 ca8f026fec06dfb9d58879f216dd554a
BLAKE2b-256 150490323bd62d81b949f6bc6a760162f5e8cb83cf81585209e01910771e4156

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec75200ccd51e6a9ced7f71f70745e5aa8a44044b8094a79bcdeba5b3f76509
MD5 663f4fb3c592ec788eb476cc59f87997
BLAKE2b-256 9c2624dd57d8145df9353882a6f10c74d52d5800bf7914f99a3917f1e232f7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cfde7ea1bbfcda28208d5b89545f62aa1f2760682fea8e2ea814f6357390359
MD5 e4b103a670ea9d90c795090ba759e398
BLAKE2b-256 2dea33dafd3daa6140cbecdd84440d85788bb721c01ff914c7734b558963d768

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8417d413c276c017108cd1d0661420f0ad157e9cc0e27eadbe2e5bf80402349
MD5 0fc4509a844eb14d57f1ecc499276290
BLAKE2b-256 70eb57df67d8ed117e79109624a0bf208f5e1dfa9f26a4a82a4eacfcd9729f3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 511f5c916bfc3ba377f4249f560a2844d65cfc415e8bd812aa5cc36b7d88a5c5
MD5 d64e4d861c9b58ba6107cbfb9e79a021
BLAKE2b-256 906fa7905a85a56b71e339de85f37bc2ec4853b7eb96c6255076f6193d7dedfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a5e45ea87eced9b680f8cbfff106599b7a0809b7996beacdb641ba5f8902e37a
MD5 43054e6a4e07e8c5c056bfea14db2666
BLAKE2b-256 584051ed7e821a1de21b87ba6a58440b686928c613bed2a84275394601222143

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef49b938d82856ba0a85f2c9182ba6d0b0471282bdaf9c70f0b69d789f07e064
MD5 5e25ac26f5db8886d30c0c9a06edd26a
BLAKE2b-256 c3d69ec56e7a39d9d4fa88fbdb8c8283a52b2e246f1905d1fbaab2483fc350a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49bcf25939c03d9bc35f50bd6eab2376f3620588b965960e883eaa8bdfaf93c4
MD5 7d886f647dd4e3a54898c06a991f96db
BLAKE2b-256 7bc4e3f21d184159010a515c43881f3509f03ae53a6900506c309c5df062ce95

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f54be9930e33851162f699741f969b12c70905f8bd48db0f26c12d679081fbc1
MD5 49d836164aa705f3ace27f4fb6d9a213
BLAKE2b-256 07ea1b80196461d9d9de7819a7c35fa84cece212eb73a031ee9963b6c285d1e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd0705a8f7593aa4ab414a023eb43b4a300b2732edd4b7f098c60182ab38f65d
MD5 bf5e2c782772d62899caa1d95550c23c
BLAKE2b-256 0c7a4292a818f1786a9ee913639fcb1844ef4d095ac7ffa021809fd56ebf47be

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5ab130541e3181e423405132faaa06f797b2a618d19ca0b312a42b94ef25475
MD5 d0a4fa822255614aebc1521c6b20388d
BLAKE2b-256 5a0f728eb832d91a5da78ca834c2fe727cf6347f84d7758bbd595ed7e108b5d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca341450c5c11bc4f98efcc72982470c1f55934d3f9ea280f3d3c78742b0ff6d
MD5 18e67033701be0b3d2c109490d8f6620
BLAKE2b-256 4dcb5c69e5eb5bbd48908c4861fedc61e83c044131ba537223e771ac99c3405d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baf07202a59531127e4c2fcd3bc92a81e30f4ccf55a878718d51493e4d3c9214
MD5 aaf3669e331e1cf312d6a58b103d1cd6
BLAKE2b-256 6e1053fc3f9b4605b7f39aa1b290d1e723b92902a967c751d597c5d2d3d67fb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 881febe263fe7389ed068c7b0becf93c3c26c36009db9ef5b7de8410fb10136c
MD5 10153de61cae729395548db8ce7e4f88
BLAKE2b-256 e34520c52973815fd62b6f2a3af70e3665edad87fb9d002d0ce0fe636d111e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53ef7931a3a1cada9d8ac9714111d998cd4c7bf98deba4bd18fd29d03b5a26ba
MD5 4a80346368e6f205f12c908e5620e85a
BLAKE2b-256 8364e31e739340fa0ae36564c1b390ac13a274627a79fc00975b147003b3e155

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a924c9687e4dc373b5227e9ad38d0792bd125943f0b74c0f5a0574e556f6b82
MD5 f3a03db25be2fff05aacff6c9e60d83c
BLAKE2b-256 173ee3b17eeded2a9fe5eb0ed674f74d773e3aac9febfac5427c88b3cfb1c517

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 816adfa8b2bfdf2d7ae0e14c82d7405ba2b930ce35821331f7189be2d24c16f4
MD5 755a09cb2eee1c2a3665b798fb031225
BLAKE2b-256 e86075c258682831bd347342cf9925a125adacb34234af507edbec84b4b17882

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f94ed332677ef82cefe610069677575fba2a61bec6f90fa51f3502d9e954ff65
MD5 fa10fc5a7c68550ea60b75242b73852a
BLAKE2b-256 c5bf8f31d1e318d5a39c9e6934ab933f964a5dde00bf07518142b0c15668d0a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5024898a08e8d3490483a3dcae77017174a047ebf8c54025da32ed30cfbf2e4d
MD5 a1f97626579668c56826c03964754086
BLAKE2b-256 97f1b4492b602573cbe36ffb5184ba1c4ad3decc167a9be0e9ef5b76bfcbaa6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6cb748e0c05fedd27dc0654bed2adb56bbd2d63207e8931ef124739e5a5de855
MD5 8fddf446025598d02d54be1a0cb95377
BLAKE2b-256 78fa4510826b494a47fbb28b6fde7102f9e933ca892e4ef1de9b16fa58bf0009

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on nickpetrovic/django-prettify-html

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