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.7.0.tar.gz (3.1 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.7.0-pp311-pypy311_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPyWindows x86-64

turbohtml-1.7.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

turbohtml-1.7.0-pp310-pypy310_pp73-win_amd64.whl (1.3 MB view details)

Uploaded PyPyWindows x86-64

turbohtml-1.7.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

turbohtml-1.7.0-cp315-cp315t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-1.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp315-cp315t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.7.0-cp315-cp315-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-1.7.0-cp315-cp315-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp315-cp315-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp315-cp315-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp315-cp315-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp315-cp315-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.7.0-cp314-cp314t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.7.0-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp314-cp314-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp314-cp314-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-1.7.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

turbohtml-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-1.7.0-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

turbohtml-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

turbohtml-1.7.0-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

turbohtml-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

turbohtml-1.7.0-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

turbohtml-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

turbohtml-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.7.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

turbohtml-1.7.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

turbohtml-1.7.0-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.7.0.tar.gz
Algorithm Hash digest
SHA256 979eaec2298d37e1fe6b4b764e71b64c13444646fc850bb7f58843a0aef147a9
MD5 dbf3d468206c073ce2e52a9431ec2464
BLAKE2b-256 9d138308068c66e4577a238ab5c98a7867ce4273064d75c9c75301fae9302d73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8cd7693d92d97ecf8fb9fb03ade1bc17ebf5fb68098d4a87a6fe3f2c9eb02b27
MD5 0d2c24f0fc9d28a37a4f4c4c085a10fd
BLAKE2b-256 09aa6f6ef9305781fcf9c3530c0bba60bb3771204150ff3e4f5aa370f6c4bc78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d250009826da2031f87529db65d1a5e1a10f03bff93c5c37dd04e86c98a025e2
MD5 331136226da681fd7853d19742716dc5
BLAKE2b-256 d32c50744adf7337fccf3fb6f2f2c5531c15f86f8a09c8cd8f5089e32bc8c5cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e92c4278c60e954cedfda749bc7616e0758833ebe98a0e2f5642203fb63362a
MD5 d0e48ba6f4beeab84fd8a093af0890c0
BLAKE2b-256 97bbf1bdabd8fb0b0c9d990eed4d48df30554a06e8dcc79d53424c5555be3d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd22d2838ebb3bf8417c2e34aa9a65b49eb94cf2aec7e06fe6cb6a83f334471
MD5 130b169fd8b6e162149cddee06fb9c2c
BLAKE2b-256 580b19776fddabb0a0c4c60e1fb29f70795baad48483f8e90f32225ed8c7178e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 45fba0b890d4a9199704e3014e08ce168a072ec53f9a75e629f54ce09bc260ae
MD5 70c13bd93ab62d8ff5e9cec1d93c0a60
BLAKE2b-256 263ba1db69bda8ff2152db1782c8549090b634dd296678124a1976685071bdb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46a8dd134ed4f01abd27cccdcdf9f8c5cef99df251c7918d03ef1379b6c6582b
MD5 003df8346717463ec5517902054318af
BLAKE2b-256 917b9ef4c4edd6e962f3080ace97f665b9f26774babe853076c176af0949e975

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b956cc07a66cfaf55ee3ded4fb2b1c5f8148567ecc49fe8c26fd69470ef236a9
MD5 7ed16045414eabfe43c7f79903d21766
BLAKE2b-256 37a18a69097828689137114d6289543b9d80690ebb0914523aea207d9f4a40a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d2e9dcf5ebb2bad2765e0b0551882d92997eec1dfedf39443a25f2ea8fa4230
MD5 1c2034b3c657d88c1f83b681f27af92a
BLAKE2b-256 95de517accf49395764ebf377926b0fb1b0f265cf47ddadb6564b4efabfc9d9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 660487174a9282851b7ad7800c38fb6e2ed7d51ab9a35b6b4ff5fb733d8851fb
MD5 303abcf2ecfad846d36010c9faa6de05
BLAKE2b-256 b94f2b18e95434d3fef94a1d50154c167dba0be38e97440a3234b24b4741bc1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cbdde508aba6ea2ac96fe04637ff1145233b1bb95f80bc3ff196238bac6f3a0
MD5 4a696fcc0aaefd97ebfd70931936256c
BLAKE2b-256 d1e868018d83e8f67ac22dac29d65d51a24a8c02745e0bca1afe65619ad06c81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16682bc15efe0d8ded72cf3dbb7edeaf0623114e56550ddeaef1c32ae8d3525f
MD5 6a76276e168f344238049974dec31b38
BLAKE2b-256 456fc587bc7ebf56bd64c7cefb651e7ad7350fffc54e2597f643f0b78ffa5cce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e59285c53d5fb600563a889a085da595d3bcf22286497a913467ab7858779823
MD5 2cc3baf9b20e19bedc8b2718eb842ec0
BLAKE2b-256 9b4da8e789984497abb7c814459fc11983334c694ed8339fcb3f703da34a55b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77dadb9894e2a72194f9b882ad060a1361ba7e6366cf16e8fcdc322c2f1b3fea
MD5 12852cbbc5f3c9aba30522e697834dad
BLAKE2b-256 e58611ba7cf79e5aec761b45373d506d135496cb32bec994586e3125a08848fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74d9b8341eb7dcb69c57583c47e1e522f41bb53ed904b212ec23cfb9a7473510
MD5 8c7b0ee0606c90d5cc7b58f3b14b6975
BLAKE2b-256 20e4417b19060c51aa9f43b71c57632efe2ea68aa563e452280ad05c18b197c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e41dae870fbb4af6ca38bf277b8983472a6da86202c70142d3f59f91a6e0b399
MD5 d6f870014c0ed686c4555bd2fc66940d
BLAKE2b-256 7cc403061a098952f40812a32c8f064954b4cfeb645657bc346525b095603b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d396cca97632f45b019a1237865221f897da5d150880520249236b5990daab11
MD5 44d05e982aaa22d27703a7a8ccddbc55
BLAKE2b-256 1f2c0777bab998234a52b4e445902ec1f77133665f8117c3c6a9473978bb7b84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 231b54fa80f0e78095e6913c6b2b981652ac0da48a6ec8c172e9a18ce85bc8bb
MD5 028887cfdb047183603e9f6d703bf845
BLAKE2b-256 99303461ea3a37e2a718d7bb7cd877f908ef4b082baff0755be11405f50072d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b577069e50160798cf9012804258797502be41d2f2a44a427794a6a41bd06696
MD5 d4a16dd8c238abe5ce49ada9ad19ad42
BLAKE2b-256 d76847fa103aff16c3028c84bb16827cd424931b491be59012d768141a4af1e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cd2c0193556f746893558df5f8b6abd3a0ced571d6de191d3e3d89009ae9331
MD5 791730d74f9d56896d1c9f8b0c75c99a
BLAKE2b-256 0513a252796304ca1103cd276119709bc8f7460ab8e4d1faf951e3ccf467c0c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bedf32650ab2ae4f9bd1d80bbac5fd3b1a0289cbe6acca2e9e07714420477fc
MD5 4e7fbb7360462683bd79e0984e4d34ef
BLAKE2b-256 ca536fa25ac7b93c9173c08deda867e40f0f3aa656a279b3c6ad3974f1942d7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d93264019e64010df83bd47f094051874b903484d9fc0fd2e347cebb66b65a5a
MD5 a4c2ec69a929f5cef396fa7fa6720b62
BLAKE2b-256 b555e8958b6847b02ca2ba05e35bc9acfdff365c0ce729176fec7382d06ac42c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6adeed5cd4365116c0790837c7a7ca2bcf5b29bc417c822ed99b7ac0848adbc
MD5 5087253f7e33ae7ed9e497881f97e3f6
BLAKE2b-256 dd09e244b3823a09153b8611a485090a310bd45f89d99db3fa1f54ef44218efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26af94a85371a0a27681b5816c36ec2d8487ee3f620050878043e7f2a3420f1b
MD5 a3fcb1d42252b55398bdcd487bddbed8
BLAKE2b-256 924568a13af16e7345fe4b291e5f1908a6e75098badeed51346f1e24b15a5d56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbb08b614fdd8366736833eb1904b7e95e24c21023eec1bceaa08cdcc6a5ae7d
MD5 23228d52f736503e35f8de73eb6c3951
BLAKE2b-256 db1da2415e8ffde7dc677c55d868aef516d863df14e3b06a0a446adc7f4c2666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61e33eaaf28cda5f23ef7d0c94d7d46ac148834ea1b1e4237c726e87956eee02
MD5 4cffa6a0340ff31ef20567a537261754
BLAKE2b-256 d91559a4aa973ba28a45ecf877351e7c6f9c81ce2673118d457f2cd4bb611d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19136d7339b36bb03ee5b1fcae1d6fe1910f87de076b2baa6d54fd5d8b872027
MD5 017b39b4736bdb7fb1efa7b91812d655
BLAKE2b-256 d2266b39895bfbae9def3ed059dfb1158a91cba013ccd9dac4a733ee9e520c1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd3ab2cb106e668c27353bb9ea4ff58d5e2f3063091099dac2df4a0c1f425500
MD5 2a4ffff2d16373336fa26bead910ab7d
BLAKE2b-256 9099337a7c9a6830aa3fb792039febdda24838fa1a24c663c45a51015c44a8eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c11a268de2f6b4d6754821cd7d04f31dda746e193b45fa89e7302221d892f2e3
MD5 fb6d4a4131c13ca0ae20b377300d08de
BLAKE2b-256 a386c066741119084f19551594c34bbe472707846b9f8a81a95aef668d207b3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dceef35ecffdbb086e2af1fc70ed5d067d2cc429576d261a40cbfa8a8a89a9c
MD5 a1346614bf72a5799acadc5e0fa7f4dc
BLAKE2b-256 1d29e623badbb8e57b5288879d835ccd4e067eb54b203148d9334b18524d371f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb860bc5d38ae3ea27e874d87d5c65dcaf4643f096593af1b4e12a318322f3ff
MD5 cc5e2f0cd221a89c3ac838c256c9ab99
BLAKE2b-256 925060391aef04270f219ec8e340e2c47df5525604659b940b46d6468a67b1f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca21754d50b02f7809f441abe5efe87939a673c3359232784751284be96152e9
MD5 cd387fc8412b26f57af5ee3e6f8a94da
BLAKE2b-256 da8fac87739e55fa538aab8e5fedb1d3254ef78a65a8c5b035cfb88f8f44eece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f3cd976017ca340d5260bd6f7009899c1d159bc422e40f7a848645268d27c05
MD5 337a3b419047daf6b7467f3f321063de
BLAKE2b-256 72e7aca7d0f38aa7cbc0bb8ed5e8ad263a38cad9fd6e9cb9fad756acde11ffaa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e5c8bb9ea5ae58624b6e7ce10d0939fa53f0aa0ab5ec2a0444ad6f8591d25588
MD5 a8c5120889804380a419a22fe5bb1e07
BLAKE2b-256 02960dbef8285220b20ada82b4f1a5c82ace951845a5cd3ac15aeb9654def1bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e9f6a9aca70f51a388de727ef47e288a5b1be42e96e55fad265ab51bd4e693c
MD5 a389ef261f82f94ea71d2eb25bac5b86
BLAKE2b-256 37a6c5da73d188acfc97f113c67664f51d78c82d7c63dce7c111aab644461c9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94cca1c4630d6d38248213804de7fb01e8422e5bce4f4081fb21108009d39b68
MD5 597edd24aa5dfaf6d58ca7a7c5bb6bcb
BLAKE2b-256 8e59326c56b95df70299af83cb2abf5fabe5a6490847615b017db30463427c15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5323bd328737988700489b1afc45062ebdb090442e72e2830421d61fc91dcdf8
MD5 74cfb3bdf5e1184cd1f4d82ebf5060ec
BLAKE2b-256 300eaaf76f40a2c163e2393496d40d0b36a93419cd09be41f77d0a90546d1ce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7fe73c865cc28174ad3c35f5a61899cb3a849a8fe29ad167678956d4fa510b0
MD5 5dd34433180f35ad8460f32989c2fbd2
BLAKE2b-256 92ebf5368170a234a9a5e86d30dde234f435439067148315a5715bd46c52a52c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41089167c6d0c4cefe854a3eef2ad929621426a514db0be145441ea6f64fda25
MD5 74dca65818240be2b53f4627601a1354
BLAKE2b-256 b98a0abdcbbfd2a36946a54adc92512809505b79c0656baa5b417e95120a4389

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74ee0ecb0fb103941e6e7bc4782b212d55150df157ed450b577557f231377fb8
MD5 3aaa44e474067694a4f531b7ca410492
BLAKE2b-256 9719c50558e809e79e3a9f8446d34a99a018484c47a61630bb57065f5aa9c169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 512733a10f97af63aecc905edfc9d4cf0d0d60e6195a7207c7857a48809157c1
MD5 79968d472218a52dde43c54f3ba76e20
BLAKE2b-256 979c8c6298ea7a07d25417fdb21675321012e7c2019757746fe2de36dde49867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b3b8e138db0ed1bac8da8abb8641684b871a5d1b87beac3b1c494103f4bc9b7
MD5 e02576d85bcd85ed366f6da34c18f762
BLAKE2b-256 b4861ed28fb7ec282c53b9afe4faefe9cd79bf5535d59f0d6d99c3ae215ec543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f992d0b634033aa1ce85691d6b3dd6601df31859e462386796bb7f2a5615e0e
MD5 0444e01e77bfb6722126d0a3e5e0891a
BLAKE2b-256 e9cc646cd3beca900d7d5a362c41f210e8990a220dd9ccfc607fba3a6df3534c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b71a6f4df76cc67a03b0a25aacbeb762092b2bf3c512cdc65f58493036836700
MD5 c40d9926e43c28886b99f56fab347009
BLAKE2b-256 cee1457b2ddb95e5bf10c917c487fb142684c25eeee138dfaf0d38aefc83317f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34e19e08ccd28e7d1fca287734c4d8c72b12200fe298a0921265ca2375b747de
MD5 9390733010836016d7d1cc1af873ca19
BLAKE2b-256 95447beb2dd93cbb625f08956eb5935286a90d8ed1473287c40fada480e327b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ce890e2df4b124dd2cb10a9bd2fbf6030d6f3efe718173cdc149a2144f086582
MD5 6fbd7833565c1bab09bc1474bfd44a50
BLAKE2b-256 d407deb13138cd4c32aec52726984bb15a597495f0e96bca7dc1e95e61352efb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20966d74bf52d8aa61a726807ab411f65a1fc0b2869eb49053949b1ee46d1c08
MD5 901d3d47b07e61b501a6fa09e02fb4f1
BLAKE2b-256 4324766d7fa79b0eec9f26d78e0c842bfa75f4e8a01784eecaaca732a4b41199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f11fc8b17e5c6b6ab7b9c73015d8cd5c4ba08e3ecdec22e6f3d021628f750d1
MD5 dfac7f33a36c0c9ac3cfb1bdd2974856
BLAKE2b-256 06945bdc417bc56fd26ce3c026326d399baa7d885f9f0e13867feb258841c729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 333a657a0ef6b3f876113042a6a0dd226082fb35b400e5c0224fca1f1d34de64
MD5 fe489038c3ac20d8b2401dc92a71bace
BLAKE2b-256 a67bd5b4dc00dd342783a35d763310b0aafaa7d4f4e46ceca41b2f703a9a9117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7a9dd62fb8ad4849d9cfa5d34d7f8304203e3c3d35f029ee905769122bd0ebb
MD5 fd51239013f4bacc826364275a8ff2ad
BLAKE2b-256 0b55a14b8ff63050357011bd5225b968d81c6e970f12a3b81b76c95286b39855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33d75541782c6fff19f825deea1557ef4e544c55705148411e9bbabb0173e15c
MD5 d3ed6038c82209a3187a44fed812152d
BLAKE2b-256 c2cbca21eba4bc27119ee0105d58bc7fb86450e2b75e1046a44054b5e4cf02d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.3 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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 414330739634106195e7fd034c0e3e72b3ac41d17d907537232a5acc04bd85b7
MD5 cb6d3fde5d0a4a475432e83ca85391b3
BLAKE2b-256 14f8f637f8b413743727f9791f4b29f42e92b8afdc1055581b02b6e9c2243fb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abaf604db5a0f6acbf339749bc80e3b86276658da670437a05840be9432a1334
MD5 1a7ba898f407fd028c30071e456f42a4
BLAKE2b-256 ea16473670cd120c43ace8ec63603c42cf21bd6d3cafab1e1a9f30d0cb8102b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2982c860cb9da58c0a872f7dfd10f75271835955aa38c357b1cb1a95c6eb192
MD5 951b4fef8e2fccb0e5cd3cf030af0663
BLAKE2b-256 dd4abe932ba50c3775c5559cff6f29c5e2b46266197c238c832d9f094c9aa697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26332ae407ccc5fd526131c22b91e39ea37d607da857d4beeedd3194ab0a98b4
MD5 6a2454bd1c1947b636a052abbfc9b292
BLAKE2b-256 63d07df0f4e8c2fe5fac47ffd5e72d99b2c6ffe90304e640d7329f2a6e4cecd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d248939268df48829b5bc9b53408fce4d3f6c38195e4ddd7f63111bc5ead158
MD5 bc90f1cad3603544ed8773aa2cc7f8a6
BLAKE2b-256 e75c85c5a6fc71925781c5cfd6215a3c24983884400cb3d065ba761f1ebe05e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6cbc7393dc9890c7a80e870e74a5828418922efe60d7dae2e8a1b3776f877e
MD5 82b3e19a0f9c1ecfb69e34531ec6a8d6
BLAKE2b-256 e9357fb9ca49737fe0f9674f897fd5a3919aa7e1b200f63091e52a45f8c21ba7

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

1.8.0

57 files

This release

1.7.0 This release

57 files

1.6.1

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