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.0.tar.gz (9.1 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.0-cp314-cp314-win_amd64.whl (413.9 kB view details)

Uploaded CPython 3.14Windows x86-64

django_prettify_html-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (486.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

django_prettify_html-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (527.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

django_prettify_html-0.1.0-cp313-cp313-win_amd64.whl (413.8 kB view details)

Uploaded CPython 3.13Windows x86-64

django_prettify_html-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (487.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

django_prettify_html-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (527.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

django_prettify_html-0.1.0-cp312-cp312-win_amd64.whl (414.0 kB view details)

Uploaded CPython 3.12Windows x86-64

django_prettify_html-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (536.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (487.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

django_prettify_html-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (528.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

django_prettify_html-0.1.0-cp311-cp311-win_amd64.whl (415.3 kB view details)

Uploaded CPython 3.11Windows x86-64

django_prettify_html-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (537.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (489.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

django_prettify_html-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (528.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

django_prettify_html-0.1.0-cp310-cp310-win_amd64.whl (415.2 kB view details)

Uploaded CPython 3.10Windows x86-64

django_prettify_html-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

django_prettify_html-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (537.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

django_prettify_html-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (488.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

django_prettify_html-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (528.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: django_prettify_html-0.1.0.tar.gz
  • Upload date:
  • Size: 9.1 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.0.tar.gz
Algorithm Hash digest
SHA256 5286b3b54f89754701e202f9cc57bd98ff3452b7f05aabfb35bde15ed8ec9311
MD5 4c69430da60e900a5b5f829fb9005c7b
BLAKE2b-256 5040cd3815e59e148df3beb60334b5ad9876fa3fd49af00005edefb281ca1c9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0.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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bf16f112977b15ca1d4d695e3a1d585efeea47ddc4188145f44b8609c343a21a
MD5 9bc086ecbc2f901d65fa2fabf8d67d4d
BLAKE2b-256 4559b10c179b6852ab59d8c0912494e8e77519c34972211bd8cd1eaa324db35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49dd6302ef3b46eb5f5427de77243b6da89af19e5af2a0ee68e3df72f4447f0e
MD5 20784e9ec3d0f405056c052a012cd3d7
BLAKE2b-256 50ec0050f462e7d7e0f3dbaa1115e921134e250e49c54629f0c1290f430cbb81

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b86a56a0b450a109cabd2e10e21f74f765afb456dd1e2649b11fdc2d83e76f6a
MD5 ff2d8412a81f4313a3547c79d851634d
BLAKE2b-256 7398a1fe00b6be18e8707afa06d8090af33f3369e3f2fd74d33a89238b64c223

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99f0876253f206d62c9e926ed71f261e1eebf8f488597d8571391a51f8e8a9af
MD5 06b71e9ca98b3498e312321dc8b6e13e
BLAKE2b-256 fce7bc53d586faf05650e052ac2cf6e0daab82d4decaf0f1f78930d09e7414b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00aeb6c161c4394dbbb2dc2ba42e1679d06f2d4f2f0fdb7e8471922e0484a2d3
MD5 6bce40801be0ccd38d52aec571cb779f
BLAKE2b-256 963efb47d64df5e25174d0336b562f8fad57ba24aa1d7ba4a64149e1bb12e014

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b0ad8196b1e0758e18773ec8f2597d7e8cdc7b234be1a7033ca64e3ef62babd
MD5 b54b6dc8a853764fb36a27557857ac79
BLAKE2b-256 b50076916c988f273f19e6320a47389740f5447c32d4bd6efae520d6f35b34d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43fa242318d0eef2d7753061e5c21f3ba20e8bab2d28a965291315cca828ba0e
MD5 e33f07533bdbb30dbc96bb1ff72cf2ae
BLAKE2b-256 2f3b0b3896ba0d58c80c8ecda0fc54da29059c98a050210bc9aa6b1cebab83b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 faf0fefd270acaade670a854d16600b6962c531641d8b269008bc328a468d2ce
MD5 a0e69cd6464cb838af3bf8000bba41a9
BLAKE2b-256 9d3151b24f4e32d688b8e8b77e6cd4f7653f06280f376650884324ebe1b703f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b641e5f832baa5e438c87267e056fc664d7924cb6af0e5fc63833f92ad3ba8d
MD5 fd48728d5444938eb66618bd9afe499a
BLAKE2b-256 f27104218f65764ea5bfdfbb50233aa4acd7095f52b9cd567b51d4fbfb8f4090

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5cd9ad630aa2f2fe151fe5b70a8cdbd801ceb57e7f3f4c2ca603e92e29f3bc1
MD5 7d65ef4ccaf08395593b3212e349c39f
BLAKE2b-256 62a5c0142a48fec68b998340911684186162abded06f5b81447df30350ee4aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0056c35ef35af51ffce36faa58e2e6f29275501af0827cb1f529f61a3cdba2ca
MD5 387663703c5584052fcc22838718bb0f
BLAKE2b-256 d4bdac38ae6c651d7e71e0f932aba1840ebcdc6352a6d593a752ebc2bca585bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6908b8a817df24a121fdeb30b22d74012294d81de7636257fcdff698eb5d2e5f
MD5 7956d0655d2b834adf3fabb06e1cc67a
BLAKE2b-256 d0e93a141e9d8546d1c8f6f8653868e959f796839dd0c1126464a23d0617641e

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4cba8a1e16d8a5ee6e1ad5d2cbccd532a5c8bd1636df27c7817f8e6f37def668
MD5 eaf05efb48ea215d5cf3d14ffd8400d2
BLAKE2b-256 c56168bcf06693693e4b957e62b77bef8fc99547320bd6805ec04ad1a62eaa67

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cef9e6dcb932e2e272b1ee54c56c390d50855d91829799b80698850530775530
MD5 5a25b65d35536a025e7d1956065e24e4
BLAKE2b-256 a82119601ba4fe11b942f4d71c2e766349f65372dbeaf8e77781679cd2943941

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70ffb600f69815256b43817ca953db1ac868d5281aa999664b268cd6e6578024
MD5 ba81c234ce2fd2bda8dd9908d82b400e
BLAKE2b-256 233161a4cf05f81af7c681aa4672dd191da390650a0cfa2a0ab3aded7fce8661

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12901578010dff751dcbfe5c0dbce0198e0e1b3d851bf990dc8dcafbaa483f4b
MD5 4baee5f517c1b6cc88f2f7580ce85cfb
BLAKE2b-256 d758622b8626e06f8e0e8150dea34d71e1ff8cad8f08ca560511bc35054ffaff

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b72b58adb035a9903715a132fab2b670a8bb10f093540e3f7e4600e9b0abce48
MD5 7d2e311148464bcdcc716f35888da8bf
BLAKE2b-256 86b1ab675773d8298add5599f4aa44eab2838285bbaffb036e2064125478232f

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0c1e920f28c1a5e1a4133eaa13f85cbecce86b31a48e8da7b4e2c9b1d227194
MD5 63e74a2b8d4ec004ff6414ba91040665
BLAKE2b-256 4a128803472c73be4f6a7e278a892cc7080249d5950e3eeb0af37710e141ae0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d1caafc859a3526569fac2506574b734662e3fc94382f1f3ab74298f5c5b2c9
MD5 0c82539b09d5e561854c7ff91494989b
BLAKE2b-256 81811a1415f14016bb84f4f965612746e1b0257ecd4c1aec8a9622f2a9de4d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8db4782203a2b3f3aa5d526d263a448e72496633388ecd520379f692c17ca027
MD5 3d010f7b127468956649062f4ea7720d
BLAKE2b-256 8d78a2d29acaec00f66b709b10a77ab0ea126bb03586ffbe1f3e58a4779f87f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3667a6c9c97db0afeac4a0cdce760512bb2737102311212160dfdfd8bc93e9d4
MD5 2cc11967214dc6fc8ebf24b6ceb192af
BLAKE2b-256 14246825914fc287a53f6f627d0df3a296a1ec16c77ea52aec104e003abdf5d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5db6108b81e4dc7dcdbce8c35778f3e50fc8b29773125942bb2568a0841a34fa
MD5 ac6d57903e0eb333b3d69241a774a841
BLAKE2b-256 e78657dd83a17335baeed47a2688f19acda8a5365696b25e127f5b7ab15e0abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ffba6f4e972424af0927486a7e6a17fcbf6d8247521bc76bdd8f782d91544e
MD5 2506cffca5983712dbb90f8addfa0c8b
BLAKE2b-256 259d0e33582a031f2757023cd1cccf506d2736fe62595dfb7270a64ca0d16e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f602778b702e155cb779c6599ef4a8da4f211e48202a6fcf8d4ce6434d0097f
MD5 b777b5273aa2deb0c3908d1613bb80eb
BLAKE2b-256 a90eb3fc05edc52597b1df66bf6fc2cbf81442238269b57c148a2103979746d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for django_prettify_html-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4449f061bfc460199998fc3579013fed37b6398ccaac55a17a648b1a81e3c50
MD5 fa8078815bac6b5f9c7918b939484765
BLAKE2b-256 5f5b90a444af69c078c915ae1392f39831d657419d82e7abab74ffb67320b3aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_prettify_html-0.1.0-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