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

Uploaded PyPyWindows x86-64

turbohtml-1.5.1-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.5.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

turbohtml-1.5.1-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.5.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.4 MB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp315-cp315t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.5.1-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.5.1-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.5.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1.tar.gz
Algorithm Hash digest
SHA256 4d574f5f288f54d266bbce64aa1dc43967c32476d5f162fd3e6bccddf5e4e87b
MD5 7b5d43c5787fd39e7f74a67996c701b1
BLAKE2b-256 a93e11295f7d4410f639e98a7d1ea490aa4799e8e961e547eeb879974465cc0f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce9138dcda4196c4e70e27aee8c3357a9b69f9781e9b9c589dc28601c96231d0
MD5 405ed166e8ba00b5f17c39ae5a92e943
BLAKE2b-256 53f2150ad7e33f530f26a6d2a767c21057381499f7a7bb452ff3c5e03e558ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-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.5.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 973e0ace7294931873f07c6b21e817afc03f22141f2b1712bc3cd89cd2b11dd8
MD5 b497121bc82519a79de40537a91cc113
BLAKE2b-256 0a7b2a2383355186b49ad318b0cdc9b208be0f1c0a517781c89cd3b3add66662

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c46887a057df8f82bd5ba86e0d94b51a6bcfcd1f706cd6341df9b916c00c7e22
MD5 070afdcc03e3bba0f5053fcc5233ae1e
BLAKE2b-256 54c055fc97303e72f5ac3dadc00bf7ac2190e71d3df562797889220932c89f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64bb774a013b310a38112f81f712e42fd8fa2e19f222ab56d49f2ae75c02ae3b
MD5 51fa8dc9d6bdeb1dd439e0384ffabafd
BLAKE2b-256 9dede1a2a6bb2d0926f76a8a1dbe8ce6837cc988d13e9ea6091287faa0406dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6287b4c1f8d6d9cf4c095a6cf1f1c23f2551f3253acd9fa88620bb299291dfe3
MD5 6ae8f0d2924b90cd52373c66682700f8
BLAKE2b-256 55327d73083780fefa9c721f237baf3795d94395d375d2a5a98a4d54dfcd60f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-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.5.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9d4bddf947f7e671322628a2fe1c7d93d5649290c78d9d9e4a4b5481f952b1a
MD5 c3c82cc2e890de24c616bd51a4343f81
BLAKE2b-256 22c6ae83b19d4dd5e1340232d1325b670eff146f5146fb42f83ff90803d55870

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd60e427be32bed897b74c10db758a2b95c9d26771075dfb00ec5b59215f22b8
MD5 2b14f488b35638e8c016bde95170721e
BLAKE2b-256 e63acc84c784c11e485e3f4bf2247768521af2beb790b59631d5043b6557e077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14323b2c0b0e548b60aacb31ac20d94f600978042add8d9fcf661dfc9c7a4eb4
MD5 bd599cf996a82a3784f67755d49b43ce
BLAKE2b-256 6500f672eeb4127b32ffad823f9239f9e613b302cbb0102faf1f4e0bc7a7299c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 32291f58b0100ccbd7e4e5015bc7c5ad862211df16a66230a98d172737ee33ac
MD5 402f2861fb4817444b65022651daf524
BLAKE2b-256 a401968da0015c47ba01c427076f115cacc46541baa1e9a661b7aa152888ea06

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d574e98a9e9e1e7ad7e70dff2c0f00472734eb3a0d01256cc5f1e1b39fdd8b6b
MD5 06467afcc3ce5540861220721eb963d9
BLAKE2b-256 61009df3bb27c3a46000c11c01003ab537913a558f6e8a3fc2cb85b5eb539375

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70255745bb018ffcd27c3d2a3280b9007921e2d8a764aec76b541ddd4856c89c
MD5 883e90ec84802f12bdb883a2c8f728aa
BLAKE2b-256 c5fa014ade9b6ea3f16777dc24bdb056c1634296a9d29a231fa75027f6de5f35

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6eb3c741e2f6240112589fe841a8fcbaa30ede8f233772bb9c4ed780f1ab72ee
MD5 d4922365653d41bd9436f00eaf270f12
BLAKE2b-256 657dcb62ef4859b4faee61dc29b29897a884d923ce70d764a054c06013b5bf27

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 402511ed34de71aff3972ffa277fa2640005b8db70fd911b9a94b71b69813b1f
MD5 51d65346410ded3df9abdddec2560be4
BLAKE2b-256 eb2edf7707f45c499022a861df4a01f06f4c7a92c747f831d6767c6cfac13022

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 627020943f6f853dcef7e7895afc5b362c93ecdff7f89213d36a750a755b3762
MD5 550d3731a7834741c6392789a4226f5d
BLAKE2b-256 72cb3f09478fb78451fa1105dd8b3dc7066b4d973359a067f49101e819ef6fe3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.5.1-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.14

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 62aa527af9a511d098d2e96441d1129ec9207e2fd833597fd0220bceae381cb3
MD5 0c70babcbcc08bdc0dbb82e884f39b70
BLAKE2b-256 1e9347f2c773f8c548f5865b9a8981f80f9685be4c4f9ec9e3a9bf65beede1b5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e3063a58bdfdc462a035ca81e3c46b6c91e95bf70e71a743132f8ed018f4bdd
MD5 cd9de60af775cda63e3dd49b38670494
BLAKE2b-256 93a0875d23ab270c44a0e8a7c6d30fb8ce016164b91a4459200684c0a089a280

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 440a64819415ca98910b169208bebbea8d8efcfecdfd5732792dfd89028047fc
MD5 5a0ee3e849608e1655f1e4acb83a8340
BLAKE2b-256 f7e80cfa72496667b0330b053d6fde4cf0fee3de904bb19a66fdbf73536fd3ee

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 647d8a6cecb5772843581a65970eb7e640024b2e789f2ff23a73cbaba3163947
MD5 1916f6f4c1d363916b1f9705f1494590
BLAKE2b-256 6c1f63b58797657b2160254df763aa34600905f9503aae4fa1cd2f9b836846f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 817d93cafbf8025b67fba09841b6171acdabc403c924ceb371b2989652ae679a
MD5 34be95ac14861e74419cf3c127e0835e
BLAKE2b-256 de850da7852b069e0e8dafdcab5aebafae7389cd3a0a3fe9028dfa251806586d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df06d2f7616e7ce258d674f3a780ffbb1f08a88e40ab00ba6590524593a24986
MD5 3fb632e6f3b369c48f3d0e4384aa39cb
BLAKE2b-256 1853f8c7ba86493a50762cf18c798079a20625ab8cedcbaad1053308c9794dbb

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bcfd549c42b856772a759b8787f694d9e5fe2b39acf838069cda97c79a31aece
MD5 625420fa29a6f8f6ac1017056a152869
BLAKE2b-256 15667461cb2de1ea28faaffb8bfcb76c9a6fe96fa2c1577de5bac521f2600e3c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e78c1cfb68a318c921a9eb1bdcc4cd7626bc1c796f5e1269d58480bb4773e42
MD5 4673cd15f88e5d22e81a178046e775ef
BLAKE2b-256 bb8fc49675d0cb70d2726eac4afb79075aa525699f5ba1e2aa4610bb76f74492

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcb6762cf5ee31d5dbc0fcb8cee467fc98bd5e0c10d18c568962951a5eb0b7fb
MD5 324ed30f4fd164b6b3189f5d93e666e6
BLAKE2b-256 809bd32f50520a4b7c02ceeaff8bcc11ee94b662e9beca6d753eba16e55fc156

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d203734d43a0317e330c9cc7c7d51677d4046356918f7901072207ff0a72ffaf
MD5 63372a55933130e9ae4893405f95a87b
BLAKE2b-256 2ff76e9803cf5a46d3ee9df45f2b8013b0c727839d866e57c52472c7a992de69

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 518d405ee886a7db522b8cac89be065fbf83ee63ac337bd56153e1bba3d42da5
MD5 f62b30913257b8e029d84d583c08cd5a
BLAKE2b-256 7e7576ab8796f7f751e4742d1111524f139c9ca033e670e580ac1b92404f004a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fde691b274e70e46b1613448fc0f21f028366f4608d1d156710fb257a77794b
MD5 1be8dc8ac4a2e2b37c5c82d026367ae4
BLAKE2b-256 9ec6bd4d4da3000349c6ee2f07255ae81d531e76a9c80e3d82f52f5a5a099f88

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.5.1-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.14

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e59c5c1b884963db4b1bfd20820cfcbe944dc5b058e6850d16b02cf3db8381d4
MD5 c20b6b202f2904cc763c3d51b38550e7
BLAKE2b-256 fd9988f08d855424163bbc54ec06ed0883cb988e054a4e4ff118d4a3b1db9ba0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f389a632f68f6a80089ee221608340fa813712d8671ae838ab86712ca678d3
MD5 4ede2d16ebe5469c419504c1a6f38c57
BLAKE2b-256 692ba7981f6f7338cd086cbebca2ab7dc1da42a20e5d81a64ca2ad0706fd0b54

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7b282c373f58dcf3995b2d1d45b8d5d91056279d70af2d31613658c7a49b0b2
MD5 67ff18bf65b2159941fc22070b4f47d7
BLAKE2b-256 661f3e262650cb41a7ef1ca7d950dce0c03071a02c692776a920006f57e2b3ad

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cca3b02f480bfe7574e87cfc7e6c527993bf72f8d283ef52d3c43699db53f2a
MD5 7409f7cfa1cf4364dc4b5434889e94ea
BLAKE2b-256 2ca66d0d5bde78072e29c77762dfc675166d18f276ad089a7862f84290b75b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2a9681a6037ca504115c41f2fe71e8822c10bbccfc642daeac5e694f0dce033
MD5 a288158278dd6d1d772da62a62590bd0
BLAKE2b-256 e0b49d9b779a3a7bc20563bb8795c793d4431b93f492c8e8a42120be80af84ed

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 923533bbce12928781c1aab820588dc1a4ae26add11d053d4fa0ae34e5a3057a
MD5 bbc47b0c45bb26e86a95f6d8f84ae107
BLAKE2b-256 4a155e72d03da889aab46d19378ae9cabfb099c073835e191e2b274112cc16b8

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15a3fbe40ac88eba21cd8af89992b4329c5a15667f52feac89feddac51e2910e
MD5 47517f5f09a3733453e0967d92e6615a
BLAKE2b-256 3f42cb82054f0deab9561b33ee9f2022ae429898282c1b3038ba831756294d4b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c137f55675b669d7904f56fffd37ece239a88fd4e386199396690b3fe2fa0fd
MD5 88194f6177ca4c25d2b3a31c9adacc95
BLAKE2b-256 e85e044278ee0684ee8aa84a40bbe765c5429696c8586416ad95c2ab7ec5415d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81d7b417e9860797c8799351cf9ca944516758b4f08f7647ab0b57894176aeb1
MD5 b55baf17a8ef1177569c2a3a69aba2b8
BLAKE2b-256 cb64c5069696e1279e33611b20753b69ff2ffda07880c2b282ae18ac8158df1b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50624a7fd1ca57489cd6ab9116946988bc108d47a12e8f561d1cc5094a53ce8e
MD5 6bd84d2b4a065a7d9508218ded367812
BLAKE2b-256 02cf8cc9c2df0a29abdb8e26ae8eef4646134091ae251cc92827ab8c52d805ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a6a9112b8698ab3f823814d24a7eb5b159a384d6f623fd7b5737f1c8922f16a
MD5 8173315918205ad060a0308308c99790
BLAKE2b-256 5735f3af0e8809a495d7fc0b06c8477ef5608e14d5b7669eef7afb6069462335

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30b621887706fae94d15e237b2556a2d8e2f81776b613ac41386ce86cc1ef1f2
MD5 6e87135e1c8d93c26349020278efb444
BLAKE2b-256 2aa9f4864c9418ef5bd9233d8a622ce516a11f4035dd902ad8219e67ac30684f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 63aa2baa3313286586f09860c9a589a65fe063428e07ca1e7a6eee3cb6a17554
MD5 f87d688d01d7cee454176eeee2d66080
BLAKE2b-256 3766b21b59ce8329bb9ef612267b1e02b5f697b868cba7304940ad9f3477ba45

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fb443572a65d4691e2397566aa5811b84747a7648499c0c357667009af753fa
MD5 da23bc2c6e24616f1ef755ed4675537b
BLAKE2b-256 d0ceaf9b9888040fd8bf28da3a6db73bb4185b19eecb539ff1fd26724bc5c0f4

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56ce8235796efe761cd2a0963431794f8913eaee70c471abcf4a98fce39a07ac
MD5 2180d7d9a14351d8379e6c8950482a45
BLAKE2b-256 37c3d3fbdb4d4ab41fb47d80fb0218001ae4e0962412dd78b5d6ad4a7e7b429d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f80c69f5a795c929b082de2bcaadba75429bcfd9f5758f2eecce496607f74d99
MD5 9050fcd68a1a8cfcfea630fdd9273fce
BLAKE2b-256 94bc5a600b72938a50e862cb664a4d0720c8e2e8033a628d0ba3356659eaddf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7045b437c0126821dd32e2ec542b64379e11503cef95d7661ffaa367f36b33da
MD5 bf85543afc9514df49d517c58e29bfc4
BLAKE2b-256 6642f1e0764068255246a74950f02cb64512a328c9751d52c03ad38a34d11dc4

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4020a183d67cc93b4ab6f084db50c81da7df2e975b97c3830bd545087c517d18
MD5 f853f16240db01f9807362a8615fb9b0
BLAKE2b-256 73a1cdf7f1a8c1047462f7df242907e3d7337ccfcb2f3769d101bbcec1693514

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd63d147ab38dd36a0060b0c1f0a67b4d285bedc7a25511093ba4268418fdeaf
MD5 5e467942bc608514dc42d20e3330a7da
BLAKE2b-256 acf0cbf21a3a2724a3a640d90fce071c75eb17a10abd1e428f33b3190f923c85

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de136b2ea3518c04d7963c64f37c5f36dff2447cde03e620a3a4564432903a24
MD5 d718dfc040c04fe187ec32e5e50088fd
BLAKE2b-256 9ae9797006796fe285cc9cbc47f4f33d1802bbb22269e7f8320912b9db0356e5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d98c2ddd291db078dc2168d7f0197730253277b346ee2ac9200811ffbf05a47a
MD5 274aa0b17d9d23066efcc38613967110
BLAKE2b-256 f904ef23b00648c7d10a9054904ff69fefad7572eee59025c3bae91a4c7e890d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 704cc0b7966650612272a0dc65b85a6546e1ba07e24fa740a7d57798822761aa
MD5 ba9cb1b7f826c882f916bd3d429a1811
BLAKE2b-256 7b6854c4bbf06292d64bf4e3001f2a2f0b3b74a0926c5aaa0c38bfa74f84a9d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2350cd6a01bbe2df782af1fd0f5c2066a5779deae849927c592b1ffa9c20b51
MD5 2f65e92fd18cd5187cb9f841350c01e3
BLAKE2b-256 4246c6cbc26a7d435367ec338863ac60460e60ddae374c3d3506191f34c0d4b7

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed13f248d81a98b042968af26dd338d9ac2904fd2ea3f991ef219a6022efd31c
MD5 e1d1fcc4e0bfc289af7a977b494a16ee
BLAKE2b-256 0d5775a5d9694525bdbd2e731c0d1e0bb4ce6f4d792049c902182841ea729052

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a96fc9febbf7a1f8c2c6fb9d6f18ae054b3e0907fe1aaccb992221c825e3bfd8
MD5 172fe24c618100b92c5d866151b43874
BLAKE2b-256 57447ff03f98df05a1534bd807d5db560749230b9e72bebebf8af9fac8697a47

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e6b33a237bc84712997c6fd6bdd11fc9976caa45dc9a08f6aeac9ffcebaa311
MD5 d7f9987f64f93463aa900f78dc35ce98
BLAKE2b-256 4b938ce968db2a13a2f65f70468d5256bf0edb1b63263078ce7691b2f5ff0259

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe572173f78611e0436fd3425fa68ccfe9898e11eed89f124f529a0edd22c538
MD5 75614677a6524f42ee61d19e48b02f81
BLAKE2b-256 d6685942597cc8cce9bafae10aa0ce341e0bd40bf0f49eac5824174199917ff1

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9191d85cae9c93a75642497e407cf6e5338e03e857821f5731f3a97762046a78
MD5 8137b15e90d9723d30dc005bb3a52296
BLAKE2b-256 69959ae040ce6357c7f48524f846005b090600c1db1d794092cb6019a5ba474e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.1-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.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a603eb0f96e9f77df3e007e7afb614e2dbb192f1d08e08d6d6737a8ed49d961b
MD5 0e2fcdc9527bf6c69b4abc4d30d9069f
BLAKE2b-256 50e71adb4da1cbc814c4a692e29db8326685198d5e8fa0f95eefc77de30fe763

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65f01a30644f5fba2b930cb3a538880e221de59990cbaf15211715530852945a
MD5 49f816ddc7b673c71c7c183970c356a2
BLAKE2b-256 493791c0041aa3fecddf043fba2a6158feda38c9aed9f0226ccab25af95c782a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page