Skip to main content

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

Project description

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.

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-1.4.0.tar.gz (2.6 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.4.0-pp311-pypy311_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

turbohtml-1.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

turbohtml-1.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

turbohtml-1.4.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

turbohtml-1.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

turbohtml-1.4.0-cp315-cp315t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-1.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.4.0-cp315-cp315-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-1.4.0-cp315-cp315-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.4.0-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.4.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

turbohtml-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

turbohtml-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

turbohtml-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

turbohtml-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

turbohtml-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

turbohtml-1.4.0-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.4.0.tar.gz.

File metadata

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

File hashes

Hashes for turbohtml-1.4.0.tar.gz
Algorithm Hash digest
SHA256 917065902426d0effe7e60536dfe192eb4defcc15280889b68cbd763a0aebbd7
MD5 71acc57cdfeb136c80df620959c9c108
BLAKE2b-256 5193bd4f569c0ca5a2974ff0a48c70e27e3d6d24ad361d3686b2cb2580998b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c34bceae32a3b32b95e8368bfee16191ab4d872e92860d68d2d1a2cfa2b7e875
MD5 e4669f76e16ac6edd9e18a7186f3ee72
BLAKE2b-256 1ee0fd697183d29ec89c7bb5e649f6937be8b291cbd82dc83cbffacbab427748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58110b2e3f36fd081fb139cb904510060146abae1a96045e33490c5f74802ae1
MD5 a975160d97bd3b4cd91e79488c92c015
BLAKE2b-256 1998a0a2a46068007f891b5f7126596b0909abc3018fda9d22469f532815838e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9dafe6256c79f871217ebf725de1194c61f7d950e85a5d68f75c991fefdfafc6
MD5 da5d9e254eef5a89d3d9473d13ef8d46
BLAKE2b-256 3fdbf06135aad1449c94efd986851a966d8f98532c06cc92752d4f8f3495ce73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4965b5cbc0a5b8543e67819eecdff8f7550f7ebbf8108725fa077641362bf3eb
MD5 9673ee46c0f842502352d97b0ecc4729
BLAKE2b-256 fd5bac583ca173076cf8544ebc5673525568c38efcbbfe2a21d486d905f444dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 57a19c5a420aa78d8cfb428b0f53faab72c0bb4b5f800b9e04326b7aeedaf021
MD5 f929974a6e7556973e0a508559169d8f
BLAKE2b-256 c448d0b504d4d09fb37a11261bcde683727d01fdbc00dd11d14867b53aa7d8bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e1c4fdd6fc015360450187599ea2e73edff0bf96b1e7d365b0659b91e483fc2
MD5 fc67d0ada5f6dedbbddc443e89e4ee98
BLAKE2b-256 d3c3d57f6bf8ec0ec30a2cfbcf592c576c0d8e7b6392a2496bc955205e565bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4b6137a0aa9878ed18e5a87612ab0043f4a9ef6b4732d574ea27d226328e75d
MD5 f5a5f00d9f6b6b8dab34869d0dea1330
BLAKE2b-256 4ecfe7ca0627f9c251fe977aa316eb3bdd49f7943c3c1a3430e055be2e049f90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1db79aed0c3698cd793c36be2f4047a961982ab7a6fc9f57c8532d1dad642b7e
MD5 03a414a15cc63ae8dc8b64c4d8da9513
BLAKE2b-256 351fdd0f2f8ffcab2c0682d8ca1042eb7e6c2c322120e0d3e5dfd7ac20c24792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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-1.4.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 16633cd2175a5e7b69376f00720421d2b8535534f98c72f876e1abf06155cbf4
MD5 ca55c7b1b36339eb67a64b7bd8287e24
BLAKE2b-256 d36cce98b3323223707ad2008b9f305f90274a20dc4e30a523b295952cd19f9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edead4e1ce719676ed09791efc2b697c204adebe4ea02680d045b12fab7cfc7b
MD5 0ab167a033e4c49d848ab0fee77add2c
BLAKE2b-256 62eb5439f917012fe67b0aa49a51e9c70794949e720eb28b9c828f71c9e738ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e38aa6c880efe7972eafa942fdcfd1e61211fa4dec7569fde661a895271c95da
MD5 cf2870a10a142ef12572b6e78a1ac561
BLAKE2b-256 34aee1bebd7a9aa088eb899f9b73970d28ee13621c049319ad2eb0651f2c1e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 81e5ea1a5ccc3132f19a8fcff205fbfcd372e657e38c606ee08af4470d9eec29
MD5 25bf1498d37d5e0e457ea31d94cb3665
BLAKE2b-256 659f1bc17451be2868ae020a89ee343c8b3e39912b6feccb376fb11caa0a14c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 faf1139f07ea8b9241a216cc35fa19c5acab74d7336a7f9352b4bb9e7cd6dfff
MD5 b293b8f13982efb298719ee91548e0e6
BLAKE2b-256 04ebcee99cfd7ee529680d6e87739eaca0d8c2b8680965abb741998eb1cf8853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 257eee3ce926f873e6c1b32e39299f5c4e5ec2c77a6ff3766c67d1238be27b8c
MD5 248c29ff7f9fac0c7cd5b1c5a1c53e1d
BLAKE2b-256 3b875c0d8181133567b1588445260f4da3de8d44c5a14aeff3980dc3259a92a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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-1.4.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ca8e9943a73cd13a6bbe93efdf5d64729c9a6fb719dce8f0716bc73bf2e4b7af
MD5 2920bb762e14e02cc0c91601fcc271f5
BLAKE2b-256 914a901a5ab22bdc3f9ca756db3c95f88e136163214b9e07c9da7754e0d719e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd28dd7afc35f1039632ded12aaafde0f8920f110f486c46c9f059ece5698e05
MD5 b71be271baca0208e328bbabcdc66333
BLAKE2b-256 ab1d8c6ebd2ed88f64cd3521e58f2adb45e7134c01909a0d726a59e919de26dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f92926f351f6205b60d1b726943852ae222cfb3a394f02f4a59c7a97a09421cc
MD5 6a2d43889e02bc179f6e7c82ce076e2a
BLAKE2b-256 ebf211f513ba5333e505c1382ac04b8a0cc8de456a4a0dc72a1cbe1933b5544d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cd9ed1615dfb44c6ca5f51458a4c2f49ae2302283291bbd7e25d9b982794b25
MD5 80fd34a5c29cd1a49ef64d6ebac270e0
BLAKE2b-256 b4928e7612519e0f386c57590e012f3ef0b71780bb1d94e346e43bd89cc962ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00c25ec4feaef80c9e1e72dcba445163ecbff7bbbd37dfac64ef557cd11648cf
MD5 1ca8a1a4de7cdc268eb2caf9bf93737d
BLAKE2b-256 289dab64dd437f7039cedf835287c09f452d26d1e1f8a690bf2b8a4a6ebacc5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d18ba2b289522b4f9ca737053f9e0001d1d89c81fb6a13a9d1d7704bfe74a0e
MD5 22c3bb2c80497112dc77bccb0f1928ac
BLAKE2b-256 93ac3634a8729db07a3b73afabbd3210c67fcaff803e1e0e08805c937ef866c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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-1.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7c9530fe7849118d551732ceb410585c6bce80071135ba2257b2f1d0de8eaafc
MD5 0cb94e8015f015913dac14c8a00aff8b
BLAKE2b-256 4e836aa2ddee7a26e0289da79e9174487af2f1112bdebc4b9d856d8b9af355a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 994639432f2ab0c6c4bd39756abb6d521debdabb40b9c5e5262a616adae4603e
MD5 f50d7a38de4719c8f6e6b1299efcef33
BLAKE2b-256 8b1235e004f45253900b76c7796bcfa709509021e6cce3af24614df1239189e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09256a3849de9b7d838f122ce8021e303eeab98b13a7f6eb1d8d12a2e8e8fd62
MD5 b4e6536caf3087de67e966cf222ad2c0
BLAKE2b-256 d1d8b8ea2f260ef6a7c0f5e9d6e9569a1b3a3af7b55ac6f435a86910e904774e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 778c97101dcdab58eebe94ea29f54786419b08e96c916b0f0a108f21d688533d
MD5 e0a614fe098cb108c3229df0fb6c5813
BLAKE2b-256 7a73f4f02a63e1215f7636b8258d69082bbdbc37f781876bb76d53ff24ac8db9

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01e5e2df6a8c7f5271c18472390144e321f8446a919141b89dd6dfe229b25e94
MD5 5124dfd6f9e42f47f4354d281795de00
BLAKE2b-256 53c85a6cfedbcad476bae3b9ed147f06deef2230ac8b52be72aa96741bddd4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 828e864ea36c3bd00b688475678c6ea027e7ce8d667d3f9c67629322bc2b0f64
MD5 ad6e831ddb70364a4defc043213310a4
BLAKE2b-256 2cd9462a4aa776e077c41fa3ee1432bac0628f6650307001268ada3a9a6f22a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • 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-1.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 55c3561678e423b17686d32b5af76c79ce2cd7bd4eee6f7844ada064854404f2
MD5 9b94e91ab2a37a5e133edb58f07e2f49
BLAKE2b-256 d9a9fcda11d3aa4c356b2b94d4872fa31938018f6c965ba24c96e4b46346a434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c59a0914386bd610972eeae5cf677db1a7b512c9a64f615e1630eeb72c2fbd35
MD5 7681ee2792213a2684b8f43bba7eb530
BLAKE2b-256 8b372caea0848a5a7c0a48218cd697a0150b457a1b51d782935c0cb01c477eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2093af5fa93a5bac5d1de970be325b25b7cf640f8fff90fd6e37f51088a344d3
MD5 ec87c26c1e0cae01372d606f93846183
BLAKE2b-256 203264e5cbcc9342309050aa93eda10db7164efc445b97c45a109663894a8956

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11ad7dc83835f50b2365982634a786124bbcfff4f7718a8e5bdb1636fc5419be
MD5 2796f709b7d0337178e5631aff3c7671
BLAKE2b-256 5cf5e0f3ad198fa45ba0717cd31aae294adbe4e4c1e96af62a66b50ee74c876d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a21655979c79a54e68f35695afee0ed3f3c4d77bb9ed884f1f6c8808809c9ff
MD5 0992dcb217f8d8a829130151b2fd6c11
BLAKE2b-256 c10ae9dcb92a52ec659bd6142cf26cd424fba85c06d2576da14d7e89a23c7250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac0e71d58ba3f8565ca0656e3d4982211c21d639807f4e3f6faa4a3b9f424930
MD5 36288999bb5f5d45eba652f2e1846f11
BLAKE2b-256 5c4137e185be837873f8aee1bf96f279c3a8474de9c47dfcf40aca90a6b6b4bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-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/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a831fd8edff202f8384987ce5bedcec3d38e6877d86a9b0adf19ecd29a403a4
MD5 42cb91a9d1c2e044237d8e214761291f
BLAKE2b-256 f14177b4ec86047e1b8c12a7fce3e2f969dd987fc8f3c413f9dce95e738c97da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62de4ad188427e491a12e31f25d728b7567c8107fa67e36581ca82a52207b69c
MD5 6d7ab9a9df5a111e47aa9a7d4c1182cc
BLAKE2b-256 b33df48b8635c683a8563b2b022685215cc0d898f4078d1fe7de5c1680f3aaa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de3f3edb8a0220879dcfee38866b2c8026bcba5cf6c9ec0b650d543d706320a3
MD5 50afa0ceaf848a04a644ab4cd658b93d
BLAKE2b-256 b4fcecce120aea279a9ba8075ac2f95f4671f92f6be2f30a6a3f8e52aec18006

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2bde66f1cad64179417173b0e8676cb19dc470e1a6656e7d7399f8550b0c5a94
MD5 d156cb3514029b73faa8dc8127ba5d24
BLAKE2b-256 0ebffab6b19c4bc5c4b01756483e40de3d948262c42f1963e7b1f4edd8c9d1be

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a208c2338c82154d0e5c73dd88af19c6cae6bebf17ad77179690ca6f0bbe5cef
MD5 97210556ec354618336d27d213dd2a74
BLAKE2b-256 62ff394c11e935215410b2a6732851f3c84b486ceea49e93df1e999dcee622e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55053b64cb8a6667772c902c94f98d15fcc4efff9211633e3ee3411d2149c796
MD5 08957ac906e8e8f6ccb2736049b0fd55
BLAKE2b-256 277ab3681d737d3584110f696d833d2856ff4c38b844c1771869a5e323ed5a7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-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/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd3b93446c169e58c1189a07dd1ce7d0d5fd498ebeb622fefcd5c1e5006c912e
MD5 70c4d5972ea327d4bedae93b0d38464a
BLAKE2b-256 54545d0301c779b6bdcb49284256c3ee56bcc80f935cd4b3f7693b999498b683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 601885859039c670caadbfcd49b98c808adcae77bf054a7f25ddda490ec35c73
MD5 2aea5ef714dacdb1088a01373aa87925
BLAKE2b-256 1ff6bd6eda3a8b131fd0f14b76b888c98016a7847b0f798c28c866927563ecbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86972b053bd31434cf967f764f92b4eaf7d8f7e934ccad6e337cfbea520fb0e3
MD5 7f3e9efb807bdeb56699d2bf5fc69cf2
BLAKE2b-256 2e0bd138a4e6e8bca198750064440a11f2680888958da57cd1a7be38f578dae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3dec7df1c2f80f9a1f20c4c757d029dd44569ea694548ce0b525bf89a4e8a10
MD5 8e855600a71a42234af6c2301468c1fd
BLAKE2b-256 ffd600adfcec23f4ee83b4656a0d393617d31e04eb887b270a2abe1bb94714a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 794480c4865f6799972195af492a4bbeddfdd872a83b883247c208732df2d251
MD5 a2a2c705fa000a985db0431249ab044e
BLAKE2b-256 59803ff74ea86cbf444b1d66dc03c8624cae357e35196fb8ee0ef8eaa7592a0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bb6f219344176f89f177168d2d0b5aea5dd4266de943f236e18d65037874fd6
MD5 39bad7857fbac1f62c573bd98fc6349b
BLAKE2b-256 bc49e63248cedb4e9fcf8bd9f53cf1ba87e57fccd180a20b6c04547c66887a0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-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/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 72e1f697ff741a0b5f297e43a00408058ea5df6c9dc1cbe00c99efd649ed3b49
MD5 e105b3103ebb749b5b107c125cef7576
BLAKE2b-256 342fe65ac1e4db72cca5ec388591b75cb1c361e58802d4566e75151b4b8de4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d240cfa96a24581999d6c86c2f915d50029cdc3c970270d0c48960a8414b34e8
MD5 cc63bc8c71480fb6551e6238ac257930
BLAKE2b-256 cecb99e80f0942f04e593b0dfd337a5514193cf511906a69818a7eeb718cb76c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c67f45e452e28114234c4a82d9a22cc07cef84261b350a3dca0eb5dbae4886a2
MD5 fe7a74009d48c8a83b683f8db1a60aee
BLAKE2b-256 72f17646a8f4a937b384f20ceb79957ea8ae78c9aafaca7b0d3e3415c9b5dcba

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98d8a9aacccf8ab432c731718b3a094fba8437d9fd7a19ea3c0857a752316842
MD5 7933d1c1c07b6bc6b784b0ad83f0e5ff
BLAKE2b-256 e0415d28f70301f724c9c4b5a20313c1462fa7cc52de2dcd2bbf248d066b195b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06cb575b911bf5b386627192481e73a96fdcf98f1a19525551f718260c9790a9
MD5 2aa0795da4df725f2dcf247898cefaf9
BLAKE2b-256 9da4fa969b1ef2d512422f99c84ac1e06c23858348c1183603d941beb894e9c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02eaef6e094991625c3873f3bbc4a12048727e5112c359bf7f7536c89f74604d
MD5 313d3aa6975b05b46989f7290a6e4552
BLAKE2b-256 0c2a00c73b7406e2e34477d93e6a01dc94409c2a14b2141db82473038d316ef5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.4.0-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/6.1.0 CPython/3.13.13

File hashes

Hashes for turbohtml-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d71ea70c2077891062936f15b0ca4fef98e4a97c0cef5a73b6a497ce262e9601
MD5 790af372ee3b920e5b111012940da0ef
BLAKE2b-256 35b5433632219f7ffe75482c596cfdd0e1a709aaf36bd8dea337a17f25c760eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47c3ff12536b0bc20e9793d1c9953cfcf4b0442902465ffa2bcf6b22e6a9aaf6
MD5 990a1b74811e6450ad0804bbf78e8cb1
BLAKE2b-256 14e35cf4b6d64aecc3d64ef49c1d82a9f32cde9baee967450d176596f85355f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9215429318a12e6e94b673269010c7e4f920cb445979ad453c17e6f7d04c0204
MD5 c21e0294075a3f924d78cbdc47eb5998
BLAKE2b-256 28b6b76a5add1562868fbb0ff7b794b17663b28cc5f2c0b3e304f53df95f7dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-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.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a623606d9dd58e04d64db10cd97cdfab0d91ffcfc6b70a728b2e703fe8244d05
MD5 9c1ee63aaf783acf1a74ae1fdfb594b6
BLAKE2b-256 e7ae6c1a1c7784cc95ece5e7f19c89b47a6312dc28c5d3d662952473e97b645b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.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.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e5cb5d02ad04e6b2f1c5d4d04605df9df32277624bda903e962a79a44a345ac
MD5 97d18685b760d8185ff7de596df16220
BLAKE2b-256 04b6f4c254bfef010534585156ae8c97446b77d5245840acff6013d024400da7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35d18dcfb689a13fa3e76f70c1a859af1836fc4d623cc04d1102dc1d0b1d3d5
MD5 5e45f9c72899bcff9d0d3e9f7f87c359
BLAKE2b-256 61552fda6c5e194e14c975f42e8e83792622ce1a9bae64384a1f909dc0eeea8c

See more details on using hashes here.

Provenance

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