Skip to main content

A fast, fully typed HTML toolkit for Python, powered by a C-accelerated core.

Project description

turbohtml

A fast, fully typed HTML toolkit for Python, powered by a C-accelerated core. turbohtml provides spec-correct HTML escaping and unescaping that match the standard library byte for byte while running several times faster, and it is ready for the free-threaded build.

Install

$ pip install turbohtml

Wheels are published per interpreter for CPython 3.10–3.15 (including free-threading), so there is nothing to compile.

Usage

Escape text before interpolating it into HTML so it cannot break out of its context:

>>> import turbohtml
>>> turbohtml.escape('<a href="?x=1&y=2">Tom & Jerry</a>')
'&lt;a href=&quot;?x=1&amp;y=2&quot;&gt;Tom &amp; Jerry&lt;/a&gt;'

Inside a text node the quotes are safe, so pass quote=False to keep the output smaller:

>>> turbohtml.escape('He said "hi" & left', quote=False)
'He said "hi" &amp; left'

Turn HTML character references back into text, following the full HTML5 rules (named, numeric, and longest-match references that omit the trailing semicolon):

>>> turbohtml.unescape("caf&eacute; &amp; r&eacute;sum&eacute; &#127881;")
'café & résumé 🎉'

escape and unescape reproduce html.escape and html.unescape exactly, so turbohtml is a drop-in replacement on hot paths.

Performance

Measured on CPython 3.14 (release build) against the standard library's html.escape / html.unescape, via tox -e bench:

operation input turbohtml stdlib speedup
escape plain prose, no specials 0.35 µs 2.23 µs 6.3×
escape typical HTML markup 4.49 µs 10.5 µs 2.3×
escape special-dense 2.99 µs 26.5 µs 8.9×
escape non-ASCII prose (UCS-2) 0.92 µs 1.88 µs 2.0×
escape astral text (UCS-4) 2.58 µs 2.65 µs 1.0×
unescape named references (dense) 18.1 µs 70.2 µs 3.9×
unescape numeric references (dense) 4.16 µs 76.8 µs 18.5×
unescape mixed named + numeric 8.03 µs 35.2 µs 4.4×
unescape prose, sparse references 3.93 µs 3.87 µs ~1×
unescape non-ASCII with references 9.44 µs 35.2 µs 3.7×

escape gains the most on text that needs little escaping — the SWAR scan skips eight safe bytes at a time — and unescape gains the most on entity-heavy input, especially numeric references, where the standard library pays a Python function call per match. Where the text is mostly plain, unescape ties the standard library, whose regex already short-circuits and runs in C. Numbers vary with input and hardware; reproduce them with tox -e bench.

Documentation

Full documentation, including tutorials, how-to guides, the API reference, and the design rationale, lives at turbohtml.readthedocs.io.

License

turbohtml is released under the MIT license.

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

turbohtml-0.1.1.tar.gz (51.6 kB view details)

Uploaded Source

Built Distributions

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

turbohtml-0.1.1-cp315-cp315t-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl (45.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl (46.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-0.1.1-cp315-cp315-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-0.1.1-cp315-cp315-musllinux_1_2_x86_64.whl (45.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp315-cp315-musllinux_1_2_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp315-cp315-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-0.1.1-cp314-cp314t-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (45.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (46.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-0.1.1-cp314-cp314-win_amd64.whl (36.1 kB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (45.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-0.1.1-cp313-cp313-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.13Windows x86-64

turbohtml-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (45.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-0.1.1-cp312-cp312-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.12Windows x86-64

turbohtml-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (45.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

turbohtml-0.1.1-cp311-cp311-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.11Windows x86-64

turbohtml-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (45.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (45.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (46.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

turbohtml-0.1.1-cp310-cp310-win_amd64.whl (35.4 kB view details)

Uploaded CPython 3.10Windows x86-64

turbohtml-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (45.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

turbohtml-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (45.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (45.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-0.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (45.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

turbohtml-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (32.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-0.1.1.tar.gz
Algorithm Hash digest
SHA256 929bd792957ee0d3fe2c719516c6eb711353138c92fbf04a3341dbd0cf7b135b
MD5 40c03a6f56357b43446d9ea6df11bacd
BLAKE2b-256 73cedb35b90920e18b0c3b962b5151f0fe01e1f61e6a286e56bd858648da0baf

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 064f5e4318fe0b4768668e8d00c45d0615bb20d5edf9c0422f09ecb8d8b6e006
MD5 4a7ae3793efa865371b539e59872ad09
BLAKE2b-256 e348ed6262e983281de4e47dd2c4ab23b8cc9b8c85d9f548b433ff754b4e2fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edbfb8bc45fe6e36dd8cb50912a52f56b3dba771efc1dce51238da252ef2e3c6
MD5 7fd2db58044683ee95e7be8142a67802
BLAKE2b-256 7759a2c2a9e36e31185601b46f60008def3bc08482ade241c55a1de08984b6a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef5dfa8a85e353b1e8dcc0dc97c4894b8d988ff565c495d5920b497446b70778
MD5 a34aeaea4bde301e3a5bcbaa7f2f8c42
BLAKE2b-256 02dd9b4eefb1c0427b4792cf440798358ec9e6b557b29429b9053496e2ec0455

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 341ba0996ce4fb05ac95d4fbdd77324701dd17c94be7d766e8d26fa4ddcfaa82
MD5 a73bfa4c5f487517d7d665188f4f49de
BLAKE2b-256 74717604da6c1c6dd80ebb42e9198e5e906ae6c18b5e6ca9ab0ed68584e7e8af

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89b151af266941a09bb72dd5c7eb6d2c71f667cad7a04cac86bfd68b9bc92728
MD5 6fdf10156bc6b07b7c1ddb1fab3251cb
BLAKE2b-256 d13be2b17db2f49f0e4a74abec08b9da66beb5423389b7dbb3669e2cad502c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff0745d3299fb9535ffcc4d333beeb5a6190f07ee7ce147b9e4c36bc97d8047c
MD5 16050b4ef7d55894149a63fd647a8657
BLAKE2b-256 57d540dfb93ecd5a1aa4dad0e75ff7f0171194edd0bb8c684611da71b5435ee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 98e077d71aff1ca50e5b06f5880768c0172e1b03b6d0f5231c271e3d312a5bff
MD5 6292868df1cfc5b06c69103b3f5caa82
BLAKE2b-256 79888f712ba525a1a66de65726dd6b2a81928615fb3e545d2edb4f6e9c83857a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315-win_amd64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de97347723716d3f77d219cad829fad0b40a78e5079ab80a653c1f20beff03cb
MD5 95f1e85fade36e04b2e57cee7fa991cf
BLAKE2b-256 ce3a75078be89c682c0159ca25958b065bc4f3e578313cfc480d243cdc142461

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a36ab1b7ada9ab7e64c08b20c66ceae18443d2132b60c259bcdf4934d3f4eee
MD5 c291624aff67d596375085a5b5b6a2b9
BLAKE2b-256 47891a26189549fe1c77d0c28c9ee13a617473763976eec99d127c57568bdf99

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 953e7fcfdefbfbd40be96d31b152ba34e3494f4538ebb5dab2f1dc406807d490
MD5 b1512cbd5132d87c1522f06a8891b0cc
BLAKE2b-256 213ee9f46528f4a1361f8e6725bef77baf233418ab8afb5803a4a6ebc937cc44

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a93059b129e9c84ddccc06655e6d2bfb0cf087d883c41102710482548727d12d
MD5 2a41fa3ae5003bdfe42bea4f544532b0
BLAKE2b-256 40e67b4834bc37189996639412c3a9a32cd8c95c77e7a9ddb54be6577eaf5e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1cdee859ea3e54a154a89677817d33327a3747962e39699183e25a5d3e6bfd3
MD5 1551d401b28e68cd4b1939aa597dc263
BLAKE2b-256 14cbf92da961708d1012a36992140e89ceb4dad24ac723b9cc1978bb727e25c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b5cfff54d693d170c61bcc520b17b953d6e439e357dc163923b6628c4b893125
MD5 5c4123918eab01c7c2d0a09d320901a4
BLAKE2b-256 151eb139b8b93cbf19cc77db51bdfd2734b57f5c6633ca583cf35e12aaf171ea

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b9fe97196aa45bc054eb1405421ef78c4a4e166b2f861170e4f6ed0974adbfd
MD5 88de0db614029adc710da7f588771ab5
BLAKE2b-256 2671eb1f5e206f8761ea04316967accf71fb61acc6bbf3fbe7b1d10dc74b9e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ab199630d46c399eaf4de4c83b3740ed4d88ecc2e3d03e319cc61f434e53443
MD5 fae99881fc399132bb775bb4e5ed9f55
BLAKE2b-256 1fab9e01d99d8bb279c45d1a505e89afad395ea434b043c06812a41e23f627cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d42b1120d4ece7f6f4398043bcb3b0e6e0d6271c429509c00b61ab45770d7cb
MD5 9cfef9eb84e698be3cfa75b93eaa2661
BLAKE2b-256 43e2c620ee66627bdd35346f96f67c397f0f17ef7b66628aed4834d26af7438a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6238e167d090680ce2109bc548c3024382452d5315553c0c9849619270720f53
MD5 e68aae091f48e374a557153c190e392a
BLAKE2b-256 a9c9553b18d77c34c21fd2fbc9a4d3a756fbfed150a81b4c56eeda4010fe8e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bad206fbb79e3f0536f26a087e5e3ad2b76b7d783ebe4b80a7fc5ca407bca1a2
MD5 53627fb118ec0fe9af99136a8d0ea1ba
BLAKE2b-256 67b8c33731d3b41d86e043f30f65539f7efaa41b7771bbb3480361e16acc038d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 36.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0d6c5aafb403f7f392bda8572db16a6b87009e7cae38661d1c409ddbd39676cd
MD5 cd5d51921704d18eedc85789d97755b2
BLAKE2b-256 15cf88eca9a378efa810250a0dd63165b86804441f86b45f624fc0bf566aaadd

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04da237d89cb0e5b600561c7777fccf0498aa5845c25752b311c086949c65b76
MD5 d0a734d2cdee595d8fdfb3a90fdea344
BLAKE2b-256 e8e69c4b3d480c57c18b9ffe7da3d9a76e5f2404485eb7158f5a36ebe9577ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d7486d868fcf1ac58e9188cb1675808508603bf4c9384ed19f8e01e7cf1517a
MD5 50449d8fb3353124558a360041dcbe97
BLAKE2b-256 2536657562291e6fe5ee7de375176be9ba5de06a9b78c1c33e726db87a7e7704

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f07430c77a79b6749473f525f5cd810992da468e2a5eecc60f923bed983b9e5
MD5 29b28ca4aa327a433b496604c16e7a5f
BLAKE2b-256 7398b30463da23f4da078ab3c3e35837ae1ad97ce3e1879255f3df26159e0c24

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 03806797aacd547eadf8d744ab9c59ac853f0ba7eee9dc2a46ed2a2e45dd0a34
MD5 9104ee870a7127672a9cbcacd08ac74b
BLAKE2b-256 f228107998de14e26ba2da519a9ac06f09661af0299fe0061cec973a3a6f6d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ef802ab66feb0865668ea570bf1e06e07d5a6a0a8910b9cdf874065a79fc8c7
MD5 d06ee93bb0bb5fc27ca26de1fe10c63d
BLAKE2b-256 f4a3379df6d8119999d44f8f2eddc76cbd86fe50b649286677ccdc3e0a7a2b8b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 783646f4cb47e45659247be9526f94b853cdbd550926a08f58deb0e54da3bcdf
MD5 179e348b3f1a63f953bb3c69a6e1e8b6
BLAKE2b-256 bb976544a0e49a306406bf80b8e33d5247d538225cc2bcc00a5caaff03593bfa

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67cc8cc038df6a20b7e1d52becef34978862bec1b69f5559e13c952abd64c109
MD5 506e9b373f1064600d402d887e947a0c
BLAKE2b-256 10e207a479f16a1034881148538d2841edd6a0d4043986ce3dc3508e38c3f303

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b15538fa60585a8c2b4b751216766a827267c2dcc87c0112a48a5dd90bab39f
MD5 560409b80e0c23b03219481928120bba
BLAKE2b-256 121ebadb33e08483d00037b353dc79759b4673eab019cf0e5266ae6d90034984

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86229d881d3d55b4cb1427eaf36404770251c56a338c087d0d2d00a52c6154b4
MD5 0ba83a3d7af268a2c7c7392f459a18f3
BLAKE2b-256 9384a54a9fd7969f53b0d777169292a483626f8ca4a2712722b3fb489b4f4e5b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fd94fcf93483b6d67b4a43b9d9366b38803faef7dc09f417a621a06f7f4c1407
MD5 9944ab0f78bf0894c7b188de3d86e7b1
BLAKE2b-256 5bd417a5dfd4f2ef60fa55b69bd618af4ccf3f175071418aff39404a683415a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72126849fd7551c04c0ed8fbbb157105571f3d3501620e79081c0871aca4df9d
MD5 e04c9aea6785839b511c65df4e808fab
BLAKE2b-256 9553366c702d9578bbf474ab5649d12b80d28d0153a02e16710622dd8e45b819

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3f6894663a298333d4618c1f2188bf2f19555d5617e7293cd66a64934cd0515
MD5 1b3385e27c1c166ad1129330b666c154
BLAKE2b-256 c32ccc05004d08dc05c3f1ef0983d98cbda9e3d1f567b3421e844d602a921bdc

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87878f1e076a6450f4d4a530c1c81800109fc4de21f3bdca3ada9a904511d579
MD5 e36eaf561794bec913a17c9187b8431a
BLAKE2b-256 bb7a263d06db89bfb13016669fe1bf8f70ecdbb23dbfcfa7e8b3b992991cbe47

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a38639a919c43577f7252fb3d43c57db93eb9e7978dc8165a92b9d4a7daa4e80
MD5 04d026b52aa87ebb0a97a67b6558cec7
BLAKE2b-256 59b430afde8ee89c6af898338225a8b615fdeb0ec1fae4414299e70d767d487f

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f0f23d6d3231f686ffc22061c47825faa6f4efe0991058cbdf28f95cf0ac94
MD5 e66d6ba861d98df0e1780ed94a07f678
BLAKE2b-256 16069f8b75309406ceca26ca29863c6b66fe21ba4c4d8ffd24be0c746494064f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cad5af58f2a379f725df6d61d4ee588eb3d6f28fb15bfc6fe56ccf079f33555e
MD5 f6868b771f469671024a030cb859e5eb
BLAKE2b-256 ae046a9015b76972799e8066ce3289d4392708b5280c2805cd89ba8ae4d3173e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31a43a7c38ef14ca055f9fa0944cc6ce35ef20b1729c0df4651197f3e62f9b6a
MD5 a022b5faf711cd18ba6808a685fae403
BLAKE2b-256 656e51311d32c1974fbd635ae2334933b527235fd9c7a88fcf00e291943adbc6

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9978368745f55a6e46b19df151e4c54bc8c4e90c43b9b7e3ad47e662c15d378d
MD5 4b60f2752639434589305392d9c746b4
BLAKE2b-256 7ade89c3a038411b38238b9dbf3523b905d4ca6e6dc016f20bd8c4594ae7c2a5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a887a5cfc8d0cca5f3332e337d5873755c434c45b90bc9f6ec7693fca0a5824
MD5 7a6b4a46a9a8cc68f349b0106e2d0166
BLAKE2b-256 43a99c0627b600db662fc372735da515b794f837bba1bd3f2e210c834554c6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c72aa157ab733823c48457d4a90a4053b7f47eb3e8c7b96a81b55a36502a957
MD5 b2da964f56ad92148f8f15e443dc6803
BLAKE2b-256 79a864d8b20830a123012adf6501d91f8e03dd896f371e391c3c1f124b1942f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 410ad3ea0c0e3d1269a0156a5892acd3c91e064ce6cf55889c1749e4389be638
MD5 60d3d69fb697c04294cdfbedd8bbefeb
BLAKE2b-256 94bae13c9ff9cc6ecddc31fce6317cb82b7127bb6e785762df8b926f41d69144

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f57e464da3fcac122e665e613c5d4b2c680a0d0ac485db663af7ddb437e8c688
MD5 6096e8a381458c15d4bf53a1c9ae645a
BLAKE2b-256 7e63d065c3685ba0dfd875e1c416df204ead7ad4dd801c085d6b91d0a6c85f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78abf0f331d2f20615c69f0b933db8cbf684cc3e0babd56c47127dbea88a251d
MD5 08a08816dca0dfca4e885edabfd22533
BLAKE2b-256 ae76b9631ad4aaee6f1cf85e2e20da69e4f4d38a97b0f39e329cfb3c6ee744b3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: turbohtml-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf4a29b8ffde35077eac474a7daa87a38f5280363fb15812f4ddee8656796325
MD5 8350f3e137e47902da121da6525642fe
BLAKE2b-256 e7a533a5dcb744a1686f56ed453232f27801b9f00b13952e5fdc5b08d92e08b0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2247fb40b7e7e5b468e96853e26aabcbca8eac886b13a1b8a8510d0609a1e70
MD5 96fe00776b8e087ee494683ee340f01c
BLAKE2b-256 38af152c7ceae31c9a1c54d38b0fb6bbb04ccf7b53d0d091e14ca2d0e432f9cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5da30c4fd058f84e4a1d72f059a7f9cdf5d9cb201185345981e510f45f40eb9d
MD5 df1b531900da8d11b856d88e068ce647
BLAKE2b-256 706037206a164f43157931fe4e9734f458862d6db8cf7f533d8fd8a0d72802cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a58ccd103fa3ad8a229819f9eb9053b9f45a5608dc774829f3c4f6c9f58cbe06
MD5 23b461483b2677d7fb5f3814d75cf477
BLAKE2b-256 a26a1b64b3e66a7f7d547936957ff600c360cb4e9bfe961b9ffe5787ba147a49

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 250ebe0d8362976a6540cd8fde4e0f95ac19943ae95fd5ddad442dd7b401e46d
MD5 8bcd6ed458d0a86aaf5f94eff4fd751e
BLAKE2b-256 80d46b06a75ae86bed8ec3ece70d54aea868c9f01f03d1256610b9eb4cbaacd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-0.1.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5adf904a66e65f28202892d57da6b4f20d495a8d9011362c2891099073916640
MD5 93940222b264d28e3a2a0a3bf99ae16b
BLAKE2b-256 1b3405ef477ce9bcf533a680ed3838aab91db0ea6351f00f3919015a2701e0f0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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