Skip to main content

turbohtml

PyPI Supported Python versions Downloads Documentation status check

A fast, fully typed HTML toolkit for Python with a C-accelerated core: tokenize, parse, query, edit, serialize, and extract HTML several times faster than the pure-Python alternatives, with free-threading support. The hot path is C; a thin typed facade is the only Python you touch. It is not a drop-in for the libraries it replaces.

Install

$ pip install turbohtml

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

Quickstart

Parse a document, query it with a CSS selector, and serialize a node back to HTML with the escaping you choose:

import turbohtml
from turbohtml import Formatter, Html

doc = turbohtml.parse("<article><h1>Tea</h1><p class=note>café &amp; cake</p></article>")
print([h.text for h in doc.find_all("h1")])  # ['Tea']
print(doc.select_one("p.note").text)  # café & cake
print(doc.select_one("p").serialize(Html(formatter=Formatter.NAMED_ENTITIES)))
# <p class="note">caf&eacute; &amp; cake</p>

Each renderer takes one configuration object — Html for serialize/encode, Markdown for to_markdown, and PlainText for to_text/to_annotated_text — instead of a long keyword list, so options stay grouped and discoverable.

turbohtml models text as real child nodes following the WHATWG DOM shape, so node[i] indexes children and attributes are reached through node.attrs.

The dominant scraping workflow — isolate the article and hand it to a language model as Markdown — is two calls:

import turbohtml

html = "<body><nav>Home</nav><article><h1>Tea</h1><p>Loose-leaf tea steeps best just off the boil.</p></article><aside>Ads</aside></body>"
doc = turbohtml.parse(html)
print(doc.main_content().to_markdown())
# # Tea
#
# Loose-leaf tea steeps best just off the boil.

main_content scores out the navigation and sidebars, and to_markdown renders the article, replacing a readability-plus-markdownify pipeline with no intermediate string.

Capabilities

Task API
Escape / unescape escape, unescape — byte-for-byte with html.escape/html.unescape
Tokenize tokenize, Tokenizer — WHATWG streaming tokenizer with incremental feed/close
Parse parse, parse_fragment, parse_xml, IncrementalParser — encoding sniffing and source positions
Detect detect, detect_all — standalone encoding detection (the chardet/charset-normalizer successor)
Query find/find_all, CSS select/select_one, XPath xpath/xpath_one, matches/closest
Computed style computed_style — resolve the CSS cascade to a computed value (CSSOM)
Convert css_to_xpath — translate a CSS selector to XPath 1.0 (the cssselect successor)
Transform transform.Transform — apply an XSLT 1.0 stylesheet
Validate validate.XMLSchema, RelaxNG, and HTML5 authoring conformance checks
Serialize serialize/encode with an Html config (Formatter escaping, Indent/Minify whitespace)
Minify minify (HTML), minify_css, minify_js — value-safe, and Minify(minify_js=...) for <script>
Sanitize sanitize — allowlist scrub of untrusted HTML (the bleach.clean successor)
Linkify linkify — auto-link URLs and emails without touching existing links (the bleach.linkify successor)
Rewrite rewrite.rewrite — edit markup in one streaming pass, no tree (the lol-html successor)
Forms field_value, checked, form_data — read and submit form controls with WHATWG semantics
Markdown to_markdown with a Markdown config — GitHub-Flavored Markdown export
Plain text to_text, to_annotated_text with a PlainText config — layout-aware text, optional labeled spans
Extract tables, structured_data (JSON-LD / Microdata / OpenGraph), article (main content), feed
Build / edit Element, E/ElementMaker, unwrap/wrap/decompose/replace_with and live attrs
Command line the turbohtml console script — to-markdown, to-text, detect, minify, sanitize over stdin
Migration turbohtml.migration.* — drop-in shims for markupsafe and template autoescaping

Performance

On an Apple M4 measured with pyperf, parse builds a full WHATWG tree 2–5× faster than the C parsers lxml and selectolax and 30–80× faster than BeautifulSoup, and tokenize runs 9–15× faster than html.parser. See the performance page for the full tables and methodology.

Design principles

turbohtml puts the hot path in C over a single bump-allocated arena, exposes one fully-typed Python name per concept, conforms to the WHATWG HTML standard, is free-threading ready, and carries no native dependencies. The full list lives in the design principles.

Migration

turbohtml is a clean break, not an API-compatible replacement. The migration guides translate code from 65 libraries — BeautifulSoup, lxml, html5lib, pandas, markupsafe, and the standard library among them — each mapped to the namespace that replaces it, ordered by adoption.

Documentation

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

License

turbohtml is released under the MIT license.

Download files

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

Source Distribution

turbohtml-1.6.1.tar.gz (2.8 MB view details)

Uploaded Source

Built Distributions

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

turbohtml-1.6.1-pp311-pypy311_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

turbohtml-1.6.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

turbohtml-1.6.1-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

turbohtml-1.6.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

turbohtml-1.6.1-cp315-cp315t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-1.6.1-cp315-cp315t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp315-cp315t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp315-cp315t-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp315-cp315t-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp315-cp315t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.6.1-cp315-cp315-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-1.6.1-cp315-cp315-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp315-cp315-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp315-cp315-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp315-cp315-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.6.1-cp314-cp314t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp314-cp314t-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp314-cp314t-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.6.1-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-1.6.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp314-cp314-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp314-cp314-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-1.6.1-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

turbohtml-1.6.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp313-cp313-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp313-cp313-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-1.6.1-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

turbohtml-1.6.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp312-cp312-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp312-cp312-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

turbohtml-1.6.1-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

turbohtml-1.6.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp311-cp311-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

turbohtml-1.6.1-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

turbohtml-1.6.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

turbohtml-1.6.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.6.1-cp310-cp310-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

turbohtml-1.6.1-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

turbohtml-1.6.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: turbohtml-1.6.1.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1.tar.gz
Algorithm Hash digest
SHA256 e7f248cbbd7622633dad6bed79eccb23ba1c1808b9dcd74e69d7bf6231be9beb
MD5 3b55da07bdeecb927381feb65138560a
BLAKE2b-256 c62bb93c2a0a8297691da5d84c6efdd50b5940dbf601d74c471f075d48fb464c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7221eb1e0fcb35d15840cd5f8c5cd1d430d185cc1f5a6752614885235a0c1669
MD5 d1d5644567a7044a8b623b66a0f15e76
BLAKE2b-256 9bf8e899638552d84f35b1525428a1a1c44e3aae0ad30cc36ffecc8a41e2dd68

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp311-pypy311_pp73-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-1.6.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac59573293c59f95257c617c400e46fc0ed252651a2ae9f186c44026461a19b3
MD5 89761e383b138d3990b735f5aeecc978
BLAKE2b-256 20638a1ed6a43172a5dbe90816b4ccf06b62f34ad174a70e9fddfb8328832717

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp311-pypy311_pp73-manylinux_2_28_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-1.6.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03974813c2c43ce29a0f5d9d788bcfff618fc4739ab7c8dcc4de3544adf6af2c
MD5 68d61d9229c5037bba9c72bd68b8fc56
BLAKE2b-256 2ae5e7136b5dc9a066d68a76d259045a55dc02ca5c2dbde2caa555226e7b471d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp311-pypy311_pp73-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-1.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52682dd19b9b6f8a725d17c9385014d04b0fe9d18da8776612e26b9c8762f44f
MD5 5ce84865d806e1b84c23e1ac3b834e90
BLAKE2b-256 8f75928dfbfd5425a65509b7b94b32d9494218c9fb9ae744d37b5e3ab0748824

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp311-pypy311_pp73-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-1.6.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2bccea54dac3781239a8dac5343dd7fe82ae7e3e83c4104473d10584bf020732
MD5 81476930000800d96fe5eed0110b50fa
BLAKE2b-256 d1c67c96c8645e8bfee7f80ea144eb56c5491d667c3bbcd2bcfcc52de02213b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp310-pypy310_pp73-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-1.6.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 206825636f640e7a81499f8a37d643fc8e965ff9896f725700be517b552abffe
MD5 5de960ff61824ee161fa2b1ca413306c
BLAKE2b-256 6f70b61281de1440f2e6f7545403f2a8517ff85920a8f3e0a409ed5b2204ba7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp310-pypy310_pp73-manylinux_2_28_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-1.6.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffc7c87187f6c366f4ba62f1fb5cf295699e34fd87ce5a8c16a17e47dd7d8605
MD5 79340ff45a681e2db0598f996a6526ed
BLAKE2b-256 8f14c9fa577fa6eaa1c31f0fe579e87fc0eca31b210d62a46113e84ca9c9d7b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp310-pypy310_pp73-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-1.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d662f7b6cfb4ecdc31cb278fdd322561a295768a3a02fbeca093ef2609522c50
MD5 0c3ce64bf6b6efc5eee0aec61afe0ced
BLAKE2b-256 06117d3638681b9aebd3d380f3dc1e7f06ca7cd499ad1ee915d3dbf945df6e88

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-pp310-pypy310_pp73-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-1.6.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1ac490d315a878e01517b7c3f22de0f4a2d6acb4df6f37075193ac580fefe792
MD5 ae9452a93ad1594a905a22f846f2307f
BLAKE2b-256 0c17cd0a4aa1c1c74a678e7ad314116d69cbd4e8ee4c35c6086a4d96bc1bb1f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a4004f9384cc7cd48c317210d31242e229de0d2e21c9f22c0ba6e03fd5a1e0b
MD5 9dcad3ab1647a52f2a2c474d12b126bc
BLAKE2b-256 74bb0caf1dabda4d3b2205b1facabc036d0cdb7385e0422e3c59ae30cbacbc9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3643ee74bec606f562bac2750fc63d1f030ed2c0e56c0c6f1474242e44d5b539
MD5 56437bf39c27c5b988fcf1364cce8d97
BLAKE2b-256 79ca11f279956d55cb352357ec9f4cfa02cf88bc965659cee59c10976d27defb

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 93421ead3b48bf5ac1476264c3dd5e675d6b32730f9daffb9de03373ae2e86c4
MD5 8767ecf7914e9f759a2e6756a219fcc9
BLAKE2b-256 2a7c3245810b97ab5f4f493ac73d8fda6130be90334663ee9f58f55a6e15af36

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp315-cp315t-manylinux_2_28_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-1.6.1-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1697936d014e61ab275ef6ef498de2d9b9f910ee515df100dfb0408eb98ad423
MD5 e810f8590ff14565f683bc35bf0e695d
BLAKE2b-256 71f99778676ffd1e3e7a2185a450219831c2caec2b444d80ab31623932c7122f

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp315-cp315t-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-1.6.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b46fe1d28d29cfba836771eb0ed46900ee9bd6dfba4c0b8ba786864f12cd636
MD5 949b7527a9ec07108aeadf239f6b8a59
BLAKE2b-256 1f5c4a40f694ccf5f34a300096b6074dac190daba9eea9a5c7337f816d47ddad

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 913a47d1a9435dd91d680e7a03a90e07db78ecdb1606653075caaab0c7820c3a
MD5 01ac2d100b7f6339eca1923e40a6de82
BLAKE2b-256 a8dbbb4e7cb306985766ac59fdf72d40f2e81bfeae12706f4e21cf7a63cd535f

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b66c3c7e982d5022dfe79d6a966133159e4aa60bd66cefd96989fa3943c0410
MD5 7933d139941175196f608458cb29b48f
BLAKE2b-256 d66325b4479569a12a39e3ce8bc47be4cabe78821a0a99e896c06ce2a82a9239

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cdb493b36ac9b61ab069f6621b2742f772c5703d00a37dea54a40a5082403686
MD5 ffce8fa17e751fbe318256d289e9f24d
BLAKE2b-256 d01853605696d8991da8ab965a7d4ce3e5309ded340f9461b20b95a134c796d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e006b33364bdeebedf2e98f1d61982b9b90b5c08b7feefbdf51983872311b10
MD5 b996f69f47d36b2628733ad382575f64
BLAKE2b-256 1c9fe1d715f418b32b17d3fdb737ab8986027306f59ed5d01c7f05dd31298895

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp315-cp315-manylinux_2_28_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-1.6.1-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8cccd375deec5d8fe93f2b4419c15f824a479a4ca6225ad166207a591716d7c
MD5 7763e6a74aa261ac3bfd764f7dc377b8
BLAKE2b-256 da2e525c8acce6423c792e3a1d0f6217a3a553b55194b7f45b410e691326518e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp315-cp315-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-1.6.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae9c7769705c190cdc8fed3abe6f4f20a58b378639e4bb12dec11cf97694d50c
MD5 97e413f845df1dc2eddce786fcef0a44
BLAKE2b-256 ae88daa9f3107ad7a814ad4afae77c89c30f29795b97781920828dfb61e737ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9da326e7fc624ceeba1fddafcd4276aeb2481f1e7381cc38acb2f8f01cd300a4
MD5 8801cd28f78ebb200e05be76301678b4
BLAKE2b-256 a2bbe9328f8b61e861e9a5dde2f281a80e8160ae216876136a9c66ebca0e7d0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21832b18e332385199074c6d33550d6fedc4c3644de34f70cd0538ded45abccc
MD5 d5f08c608c07d8e0f4a03e3ebd3cc410
BLAKE2b-256 7e01285fcc95483dc5ee54b0e81605b81e7793ad4a0c68e261808820a0001a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69c1c90dbec685f38ff20d93b9cc9f3ce1eca53df08f890eeb15572cd2fb7c56
MD5 97a05cbf875f5719c8a73038f3259165
BLAKE2b-256 2043ba2b00d0e5babe54acea9bf0d485fd6c306a815d4f0786369293e1a75a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b53a03574eb17f235c9f072599e814271432a83cf904ccc60a941b59891b1471
MD5 16ede756b39586c71cfdb78ed1c11521
BLAKE2b-256 74335023b299038e6390705d3bb32b4d1a3016402a62e01fc30f417242bba186

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp314-cp314t-manylinux_2_28_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-1.6.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9555649a74f60c8344387c464f59b4d1c68f953b8f89795d27a72992fad8fc3c
MD5 299851476621ad4ca8792e8536a2dfe3
BLAKE2b-256 aa2710251392051ef44ca02fadb2fc3a552a3e578a2f709e67c29535b0929014

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp314-cp314t-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-1.6.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39c7a4223a1976ef9975ba0efd9beb54ace4bc650f101acee5c2805cb593d8ab
MD5 2a1fa0196b7722bfe2091c028e765b5d
BLAKE2b-256 fec55c5d08a1f225dab94c9ef2e78d77d46e286b483ff7f518ad257b9a0e56f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f7061c807fb96ca3e5b25718d89cd0932dfe39499f984af20ca32445296f5b0
MD5 0e696839420052cdb57a47e9db02cd9e
BLAKE2b-256 32853368eed0c36e1621e6b79a60c84e5c80814ba738a0d3e4332fcc6502527a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3c908e65dfe0363eb580eeb85663dd62348fac3669678fa313402d2f555ef75
MD5 a17d04dd3f214c81b59c975b1628e488
BLAKE2b-256 611ce539737dd2311ad4a4d27f81e4c190985fbf5d91712f2951147a9f8e6560

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ebadc453d11476800b3ad02837bb16ebf6bc7d55d7a4c2bed045edd1f658169
MD5 716db953461a892d4de305d5c34c60b1
BLAKE2b-256 2900e392eb036a843b7c40283b9928bcb68f679a3cf93edc7326b8baedf434b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca0bcafab877e643d9bf63dfb567044f3dec6adbb46fa4e063907415b3a87ba5
MD5 ea6b9835b7cd81e05656f2560d7c4f5f
BLAKE2b-256 d85e7d6eb55d93f625159218c8f24a8fafd20598efd268bc6dac0a9b648a344e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp314-cp314-manylinux_2_28_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-1.6.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 979181233214283fba534107bbf79c5034c78e00eec9989160a73770af092c08
MD5 aac3d52b6ae4d827b782726c3a6f7948
BLAKE2b-256 52f307bf2643607ffa1f845a3e60af4c08be09dc8b583a6a3634bc65808f838e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp314-cp314-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-1.6.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf8f3fc2027343c329c9a9067069ab8161d95cbd065cda9265d330b28d1d97c8
MD5 f668a455a8ad88e22744dac7f0bb8597
BLAKE2b-256 3dd0e4399455741fd24f77580081831d30d85ca3376154a559a03fca1d43974e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6df9927c4adbdb89535f4bc1fe1beeb049e6060a4e7e78fdc37893717a4be332
MD5 baff84ec71d1d9c803e7f4a185302c28
BLAKE2b-256 195c5ad69374d3a5855ba2b40773dde2a9af8bdd6ffc09fd6867787a9991ef82

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69a73c693a1c877d94c4e50d9c0463c6a3542cdd5b38fa7274ff9d4282a40730
MD5 989f1e2a9212d844ae623cfc589a8527
BLAKE2b-256 a4ceb9eb40a63b0e434bfd316c82102ff1424b27e846925195f3dc12352758b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37b4282b498178070659b697b28e26d2104ea4c1692c93e8236ee4d394965875
MD5 3829aab9b880abb6e215bfe4d3c9b237
BLAKE2b-256 5a0f691921c16894ee1207d34cf0bbf03a16a238156935db74ecd696bd9447fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 693d4708ad8d2b59bc11373c59266d21bb7e109f6422fbdd02c5ea98922ece9a
MD5 2e8c112ec75f8974ec6a5ef4830360d1
BLAKE2b-256 a82d4920aa42b865f2d42e2502830d6a1b6d3cb6024ed670ec473d9ab6e462cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp313-cp313-manylinux_2_28_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-1.6.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f992c833a96466c221e0144a942d7dff2d3e8ef95ba99e22093ed0fc85d3e8fa
MD5 abb4dec963d9d8d1eda861ba04531515
BLAKE2b-256 2214ef727f368cd872279bc53d765c24ea62e9a2d1f6277bd80252b2ec3d48f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp313-cp313-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-1.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c504382550619bcf06f5f52a7aecf02035362ada01821e0d8bb07c05facb11e6
MD5 ad3d601a7ba137b5e7042c537aa32610
BLAKE2b-256 7f01c3698d07f3c1ea71284ab0b4490db2bd30a00846302e2859f5a44b440555

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5505fadaf7a617bc197400e8df3194335f86a49eaa25d6825b9280cb9883655e
MD5 3d0f9b22680284ccc2847d4201bc221d
BLAKE2b-256 3264292bb0952b729a8fe739c2fac386d8f007cb338333459b2272238434266c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca56f185a4210010a202bada02df4fa7ab5db6a0355646015944fd44a4fd12aa
MD5 eec5149b391c99dd987d2f320ff55f4f
BLAKE2b-256 0001ad7006edf3626493fc51464975516d451372bb880bf0cebe8232fcc08a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db160fedc1a870764d67125a9cd639b6aa2df0db9a534ce5bfd802d163dabdbe
MD5 556b7ab4ca42571645b65e773dc8523a
BLAKE2b-256 e0cc50c8b6137ecfbb86a683ff464fee01f23c15da789d0ff6a948a57ca8e995

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39a160819e09f2f04e6761a48c4c754355fe16f943496e572eecc01054c4d8a7
MD5 498b7c1271fad2073af5baa333930ac5
BLAKE2b-256 d04a32b29d20c8476045726daa7e386e47d400bdb44661c9d0e91a1e4d813c0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp312-cp312-manylinux_2_28_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-1.6.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d7e0c0f02818e4630f4a0ced32222382b831b462c840a00f520d655976db915
MD5 e90c98f0faf65b821a8b4d63b82678d6
BLAKE2b-256 389f864e25cb0b92ec1db1d08ce9c633d2ca32fb9970090f4ddf5d5fe62e1769

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp312-cp312-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-1.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aac6050bde07533b5ce68a15d6f2fc30e52812e444b9dcd4f65bfc4a81c0a368
MD5 41a2c8db40f96fa1aab9f9b039b13074
BLAKE2b-256 5fe42ad93f3136d8cd204127188a5059abe54b8e89acf7140de22bcfcc48463a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f839bd20d00f1d4c2d2038235cd9ca069163dde4348f94ec61e67b3d78557b12
MD5 ced01cd8807d8ce4575fd1e45bc4ee5c
BLAKE2b-256 1fe32de113f1096f528437af24d4521ffaf7f3af10845c9e9a81931ad8381704

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f2819d160e23450ca422bdf09350dbd831909c02262f0f10bfb10597c110beb
MD5 aa4d8ed7d3ed10f59c12ca3d6cefc703
BLAKE2b-256 9d0cfe837597904992cc408353880446074fe9b096fa9ca5de5537ae4a02e16e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b72e904171c727f2ef93592e057962e6415dd4072004fa3f91e0594bfd20ef16
MD5 9d01818294a326f6404e4df5fd1962e7
BLAKE2b-256 8f78c75d6b72ffc06e3303e0a53ed6656d63eb1353d27780032f04b38fd06480

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ff76fdf2e490a36db885741d19a380c60b43764ed9f678ce5dc981837e14999
MD5 11b06060fbba64b333d60b3e2a3b7734
BLAKE2b-256 8cc67c7b74814e514ef8f6dbc552ed95664789796d88145279f66f2e0b17cae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp311-cp311-manylinux_2_28_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-1.6.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2535dabbe253eee68de11712f2db66231fb89b13d42c4949b60a634f8dd7c95
MD5 26c9f6f97dce046d674a5434858ea9dd
BLAKE2b-256 ba3e15a335588458d76f78ef2424fa79b1e09f4c9c503f4ce0140d901219cc38

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp311-cp311-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-1.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b93cb0015b3fe82226b7db1f800467cbc7ed63d7371bbf955927e3975de4fe
MD5 cf63893b4773e4ec84398d6e480afc87
BLAKE2b-256 f3bc73c37e3417808c5875194daff5b44cb0053f53cad7818c477ad69da3d957

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: turbohtml-1.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4ee8ba0b9dc6a5e30f79787e6a693bbfaa35ad456083714b5c1d8cb5a3e2341
MD5 8300e501d460e673f4a69dbaba315afc
BLAKE2b-256 e4ba75ca7a67f1693f3080b7e25dfd0d04a85a09efba6bcc7d97f25be6cb844c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 132292d51352eb69ced824da8e9db0e8aee80b15d30dd5ae29da9dcdf7eac250
MD5 7266e19cfe530f970749c7676abbefb4
BLAKE2b-256 450ce3e1c2b335a5f6cb9e649c14e1fd3c8da5fddf2285aedbe15eb700ef5aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5874265afbb5a376c3cef3d349af8f91235611d10366792446c092b2107c4835
MD5 dacb328b2565221e77b4a776fa6ad772
BLAKE2b-256 7b5fdfbcce7a5487daeef835f8e8e77187afdf2f4aa480c298a3f9f5ad053b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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-1.6.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba0df7cd6f3209d74a90faa06bb12426ebacb50970da2f82a849c3a1cd99c098
MD5 f76f8efdaf9134a3b48d79e8293e86bf
BLAKE2b-256 7376ce582a9686e5b60745305df628a9094c9e515496bdae52b602a07052e9e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp310-cp310-manylinux_2_28_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-1.6.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0cd790681f623fab17f289abf222c6d3d8cd5c239c4aff71cefc0b7d613788a
MD5 b81ea2bf5a81fe20493257d647d4c4ab
BLAKE2b-256 0b944e20e56e2e6298338e14c3a240ce6eeb3bb62adf349001393a289d527853

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.1-cp310-cp310-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-1.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24cc9671140138640f1a0dc5d64e76d9d1028291258924375fbc5917a65f6edf
MD5 80e1ad78ced1e73d34bb85abbb0e3b6c
BLAKE2b-256 6d6842e6b73f1ce8926f5f7f2c3dc8763bba1554275099faa57aa55cd3538994

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.

Release history Release notifications | RSS feed

1.8.0

57 files

1.7.0

57 files

This release

1.6.1 This release

57 files

1.6.0

57 files

1.5.1

57 files

1.5.0

57 files

1.4.0

57 files

1.3.1

57 files

1.3.0

57 files

1.2.0

49 files

1.1.1

49 files

1.1.0

49 files

1.0.0

49 files

0.4.0

49 files

0.3.0

49 files

0.2.0

49 files

0.1.1

49 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page