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
- Add to your
INSTALLED_APPS:
INSTALLED_APPS = [
...,
"django_prettify_html",
...,
]
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5a0b04b3eb00e49766651dfb5a9521a5cd0f8a9c71f957f1ac07da6e5e95d89
|
|
| MD5 |
862021c42ea5950e8511ea9fa8258caa
|
|
| BLAKE2b-256 |
71dc6e0864a434ff19327014baa2d5305600827b4107a731bc76d26ed36b4306
|
Provenance
The following attestation bundles were made for django_prettify_html-0.1.1.tar.gz:
Publisher:
release.yml on nickpetrovic/django-prettify-html
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1.tar.gz -
Subject digest:
b5a0b04b3eb00e49766651dfb5a9521a5cd0f8a9c71f957f1ac07da6e5e95d89 - Sigstore transparency entry: 1429993905
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 411.9 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca80c513800440d4c6268bb5a1111f7f2dac4b83e73049eff94f90c0f5bdff78
|
|
| MD5 |
03b4f5131b5becc488e9f672d69e136f
|
|
| BLAKE2b-256 |
51786098e0dfc42219338a6b4417614610df29fe65e51e38710c57704d9196ba
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp314-cp314-win_amd64.whl -
Subject digest:
ca80c513800440d4c6268bb5a1111f7f2dac4b83e73049eff94f90c0f5bdff78 - Sigstore transparency entry: 1429993955
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
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
- Download URL: django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 569.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec2482ae589086ad2471f24d07b203f36592eddc2652f75417a51f4aaa1d462e
|
|
| MD5 |
f155c51fedb3aff4c11d66485bfc8fd0
|
|
| BLAKE2b-256 |
3670964866094c16b672ba64814a6cbdd4a20c0f05f795501e02b5f7b91a93a6
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ec2482ae589086ad2471f24d07b203f36592eddc2652f75417a51f4aaa1d462e - Sigstore transparency entry: 1429993938
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 534.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b07a9c6ae146d3e3b4cb7f2826be358b0959548af53b39ea0f788858faa23c0
|
|
| MD5 |
5e37d083424b0f915e8b56d8e2038761
|
|
| BLAKE2b-256 |
378dea79f729f50c5bc64ef9aef4787496ebb4bd142784a02c4227bc84f89a30
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
2b07a9c6ae146d3e3b4cb7f2826be358b0959548af53b39ea0f788858faa23c0 - Sigstore transparency entry: 1429993991
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 483.0 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfa3f0020e793c9c130c20c9752f703bddaeaef500e1d5194accc302b987730e
|
|
| MD5 |
4f5a043d8a4ff16114a3b85e80c6a8ca
|
|
| BLAKE2b-256 |
301d2e6c56f81c630d750da5de92e3918324a6d170258aec70c0d1370e930f6c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
cfa3f0020e793c9c130c20c9752f703bddaeaef500e1d5194accc302b987730e - Sigstore transparency entry: 1429993977
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 524.7 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f26a88437e4022a3c4e5ba5dbf00603dfd40d2b476b5211819f0de8c27455d46
|
|
| MD5 |
f675ed42c3b1d9b79a0b2433c69f829e
|
|
| BLAKE2b-256 |
6425b77c2276d09f071f3448046fe250a196dc7396c7e6e433c67ff9fada372d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
f26a88437e4022a3c4e5ba5dbf00603dfd40d2b476b5211819f0de8c27455d46 - Sigstore transparency entry: 1429993979
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 411.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1166b4c8bcc2b76b3bb6791cf58f018199f81b6d1993d1fb47ac2c72b4c87302
|
|
| MD5 |
ca8f026fec06dfb9d58879f216dd554a
|
|
| BLAKE2b-256 |
150490323bd62d81b949f6bc6a760162f5e8cb83cf81585209e01910771e4156
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp313-cp313-win_amd64.whl -
Subject digest:
1166b4c8bcc2b76b3bb6791cf58f018199f81b6d1993d1fb47ac2c72b4c87302 - Sigstore transparency entry: 1429993985
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
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
- Download URL: django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 569.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ec75200ccd51e6a9ced7f71f70745e5aa8a44044b8094a79bcdeba5b3f76509
|
|
| MD5 |
663f4fb3c592ec788eb476cc59f87997
|
|
| BLAKE2b-256 |
9c2624dd57d8145df9353882a6f10c74d52d5800bf7914f99a3917f1e232f7d6
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
4ec75200ccd51e6a9ced7f71f70745e5aa8a44044b8094a79bcdeba5b3f76509 - Sigstore transparency entry: 1429993983
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 534.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cfde7ea1bbfcda28208d5b89545f62aa1f2760682fea8e2ea814f6357390359
|
|
| MD5 |
e4b103a670ea9d90c795090ba759e398
|
|
| BLAKE2b-256 |
2dea33dafd3daa6140cbecdd84440d85788bb721c01ff914c7734b558963d768
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
7cfde7ea1bbfcda28208d5b89545f62aa1f2760682fea8e2ea814f6357390359 - Sigstore transparency entry: 1429993916
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 483.0 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8417d413c276c017108cd1d0661420f0ad157e9cc0e27eadbe2e5bf80402349
|
|
| MD5 |
0fc4509a844eb14d57f1ecc499276290
|
|
| BLAKE2b-256 |
70eb57df67d8ed117e79109624a0bf208f5e1dfa9f26a4a82a4eacfcd9729f3e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
d8417d413c276c017108cd1d0661420f0ad157e9cc0e27eadbe2e5bf80402349 - Sigstore transparency entry: 1429993986
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 524.7 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
511f5c916bfc3ba377f4249f560a2844d65cfc415e8bd812aa5cc36b7d88a5c5
|
|
| MD5 |
d64e4d861c9b58ba6107cbfb9e79a021
|
|
| BLAKE2b-256 |
906fa7905a85a56b71e339de85f37bc2ec4853b7eb96c6255076f6193d7dedfa
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
511f5c916bfc3ba377f4249f560a2844d65cfc415e8bd812aa5cc36b7d88a5c5 - Sigstore transparency entry: 1429993960
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 412.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5e45ea87eced9b680f8cbfff106599b7a0809b7996beacdb641ba5f8902e37a
|
|
| MD5 |
43054e6a4e07e8c5c056bfea14db2666
|
|
| BLAKE2b-256 |
584051ed7e821a1de21b87ba6a58440b686928c613bed2a84275394601222143
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp312-cp312-win_amd64.whl -
Subject digest:
a5e45ea87eced9b680f8cbfff106599b7a0809b7996beacdb641ba5f8902e37a - Sigstore transparency entry: 1429993927
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
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
- Download URL: django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 569.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef49b938d82856ba0a85f2c9182ba6d0b0471282bdaf9c70f0b69d789f07e064
|
|
| MD5 |
5e25ac26f5db8886d30c0c9a06edd26a
|
|
| BLAKE2b-256 |
c3d69ec56e7a39d9d4fa88fbdb8c8283a52b2e246f1905d1fbaab2483fc350a8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ef49b938d82856ba0a85f2c9182ba6d0b0471282bdaf9c70f0b69d789f07e064 - Sigstore transparency entry: 1429993974
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 534.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49bcf25939c03d9bc35f50bd6eab2376f3620588b965960e883eaa8bdfaf93c4
|
|
| MD5 |
7d886f647dd4e3a54898c06a991f96db
|
|
| BLAKE2b-256 |
7bc4e3f21d184159010a515c43881f3509f03ae53a6900506c309c5df062ce95
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
49bcf25939c03d9bc35f50bd6eab2376f3620588b965960e883eaa8bdfaf93c4 - Sigstore transparency entry: 1429993968
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 483.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f54be9930e33851162f699741f969b12c70905f8bd48db0f26c12d679081fbc1
|
|
| MD5 |
49d836164aa705f3ace27f4fb6d9a213
|
|
| BLAKE2b-256 |
07ea1b80196461d9d9de7819a7c35fa84cece212eb73a031ee9963b6c285d1e7
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
f54be9930e33851162f699741f969b12c70905f8bd48db0f26c12d679081fbc1 - Sigstore transparency entry: 1429993909
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 525.3 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd0705a8f7593aa4ab414a023eb43b4a300b2732edd4b7f098c60182ab38f65d
|
|
| MD5 |
bf5e2c782772d62899caa1d95550c23c
|
|
| BLAKE2b-256 |
0c7a4292a818f1786a9ee913639fcb1844ef4d095ac7ffa021809fd56ebf47be
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
fd0705a8f7593aa4ab414a023eb43b4a300b2732edd4b7f098c60182ab38f65d - Sigstore transparency entry: 1429993939
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 413.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5ab130541e3181e423405132faaa06f797b2a618d19ca0b312a42b94ef25475
|
|
| MD5 |
d0a4fa822255614aebc1521c6b20388d
|
|
| BLAKE2b-256 |
5a0f728eb832d91a5da78ca834c2fe727cf6347f84d7758bbd595ed7e108b5d4
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp311-cp311-win_amd64.whl -
Subject digest:
b5ab130541e3181e423405132faaa06f797b2a618d19ca0b312a42b94ef25475 - Sigstore transparency entry: 1429993971
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
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
- Download URL: django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 572.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca341450c5c11bc4f98efcc72982470c1f55934d3f9ea280f3d3c78742b0ff6d
|
|
| MD5 |
18e67033701be0b3d2c109490d8f6620
|
|
| BLAKE2b-256 |
4dcb5c69e5eb5bbd48908c4861fedc61e83c044131ba537223e771ac99c3405d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ca341450c5c11bc4f98efcc72982470c1f55934d3f9ea280f3d3c78742b0ff6d - Sigstore transparency entry: 1429993922
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 536.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baf07202a59531127e4c2fcd3bc92a81e30f4ccf55a878718d51493e4d3c9214
|
|
| MD5 |
aaf3669e331e1cf312d6a58b103d1cd6
|
|
| BLAKE2b-256 |
6e1053fc3f9b4605b7f39aa1b290d1e723b92902a967c751d597c5d2d3d67fb8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
baf07202a59531127e4c2fcd3bc92a81e30f4ccf55a878718d51493e4d3c9214 - Sigstore transparency entry: 1429993928
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 485.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
881febe263fe7389ed068c7b0becf93c3c26c36009db9ef5b7de8410fb10136c
|
|
| MD5 |
10153de61cae729395548db8ce7e4f88
|
|
| BLAKE2b-256 |
e34520c52973815fd62b6f2a3af70e3665edad87fb9d002d0ce0fe636d111e6e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
881febe263fe7389ed068c7b0becf93c3c26c36009db9ef5b7de8410fb10136c - Sigstore transparency entry: 1429993934
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 526.3 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53ef7931a3a1cada9d8ac9714111d998cd4c7bf98deba4bd18fd29d03b5a26ba
|
|
| MD5 |
4a80346368e6f205f12c908e5620e85a
|
|
| BLAKE2b-256 |
8364e31e739340fa0ae36564c1b390ac13a274627a79fc00975b147003b3e155
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
53ef7931a3a1cada9d8ac9714111d998cd4c7bf98deba4bd18fd29d03b5a26ba - Sigstore transparency entry: 1429993965
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 413.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a924c9687e4dc373b5227e9ad38d0792bd125943f0b74c0f5a0574e556f6b82
|
|
| MD5 |
f3a03db25be2fff05aacff6c9e60d83c
|
|
| BLAKE2b-256 |
173ee3b17eeded2a9fe5eb0ed674f74d773e3aac9febfac5427c88b3cfb1c517
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp310-cp310-win_amd64.whl -
Subject digest:
0a924c9687e4dc373b5227e9ad38d0792bd125943f0b74c0f5a0574e556f6b82 - Sigstore transparency entry: 1429993913
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
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
- Download URL: django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 572.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
816adfa8b2bfdf2d7ae0e14c82d7405ba2b930ce35821331f7189be2d24c16f4
|
|
| MD5 |
755a09cb2eee1c2a3665b798fb031225
|
|
| BLAKE2b-256 |
e86075c258682831bd347342cf9925a125adacb34234af507edbec84b4b17882
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
816adfa8b2bfdf2d7ae0e14c82d7405ba2b930ce35821331f7189be2d24c16f4 - Sigstore transparency entry: 1429993944
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 535.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f94ed332677ef82cefe610069677575fba2a61bec6f90fa51f3502d9e954ff65
|
|
| MD5 |
fa10fc5a7c68550ea60b75242b73852a
|
|
| BLAKE2b-256 |
c5bf8f31d1e318d5a39c9e6934ab933f964a5dde00bf07518142b0c15668d0a7
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
f94ed332677ef82cefe610069677575fba2a61bec6f90fa51f3502d9e954ff65 - Sigstore transparency entry: 1429993919
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 485.2 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5024898a08e8d3490483a3dcae77017174a047ebf8c54025da32ed30cfbf2e4d
|
|
| MD5 |
a1f97626579668c56826c03964754086
|
|
| BLAKE2b-256 |
97f1b4492b602573cbe36ffb5184ba1c4ad3decc167a9be0e9ef5b76bfcbaa6d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
5024898a08e8d3490483a3dcae77017174a047ebf8c54025da32ed30cfbf2e4d - Sigstore transparency entry: 1429993952
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type:
File details
Details for the file django_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: django_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 526.4 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cb748e0c05fedd27dc0654bed2adb56bbd2d63207e8931ef124739e5a5de855
|
|
| MD5 |
8fddf446025598d02d54be1a0cb95377
|
|
| BLAKE2b-256 |
78fa4510826b494a47fbb28b6fde7102f9e933ca892e4ef1de9b16fa58bf0009
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_prettify_html-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
6cb748e0c05fedd27dc0654bed2adb56bbd2d63207e8931ef124739e5a5de855 - Sigstore transparency entry: 1429993953
- Sigstore integration time:
-
Permalink:
nickpetrovic/django-prettify-html@bb4b855c4f714597218dde16216507906468e976 -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/nickpetrovic
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@bb4b855c4f714597218dde16216507906468e976 -
Trigger Event:
push
-
Statement type: