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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

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

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

turbohtml-1.5.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

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

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

turbohtml-1.5.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0.tar.gz
Algorithm Hash digest
SHA256 e79c6f03c9d333b2f4c262d28997937cbb745eae46fd64acfc9312285be4b89d
MD5 44158d27cd2018b0dfec9878be9edb2b
BLAKE2b-256 9d9b37e0eaba20adbc8b2dce0e75274b89df576ff8b303ab158078ceab89f956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 61fc1f40b58f5d9f60dc90ce8dea890667ad1aabc700c1a750e97fb29ba2c7a7
MD5 940f0067a57db0a551335839f34ec56a
BLAKE2b-256 f1b54db3ee87939517d1e2be22b334fb6ee0fac4309a5bf11a9dd37a7fe5fbf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b35cc109209a7bdcd7b6910b405bf4c7d4e5a5da4cd12ec163e37127df952203
MD5 2d944c0ddc8496e3d12e79c9b9af63f8
BLAKE2b-256 561a97628edb98f4ef2285595ea11e5b671eabc55a66b1d67fcd40c2c0c8d324

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 606ee059ae80725e10e9f00050b9aa0e22b06b92235dafe061ec7d2bf61d991c
MD5 2c5c855439c334eae845810118265cf4
BLAKE2b-256 a84eefa82286b5a3c1df735947a151e586be6d723a194494047cefa5d653bf9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec70a195a83802f1e08eb58308e586ef094f00ba40e9c4abf320f00ea9d64d7f
MD5 d0e2e69f7eb56bc54718cf34f1d382e4
BLAKE2b-256 475e22a747b82e9d903c888b1b48e2ff9f3bbfa23640923a45d16433d8158f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 45be49aa63060c02cfb1b0455e693e027f4acf65a50a37ec427a44a042a8f9c8
MD5 ff6a43ef2d716b3f3ad281ef9fc9274b
BLAKE2b-256 9e6d0d343b8eaacba271a25bb5abe4de64a153bba3d8ebc8e9a900f64b075b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e058fb550d21ad9c450cc6fef0d041fa4b4a0f3c84f1c6161ac7800164eda96b
MD5 7ab2d27f286ac1a43eb83a2ee63d0963
BLAKE2b-256 91b476cf4ecc035fae374df38dddba632ad61dbc934ce3454ac7fe2cf9efba9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0199427aa1cf33404030b4338bdbdfb2dc5e32ba023f9857182b71c9ccbf3564
MD5 8e78acda267e526637254b45cc8648c6
BLAKE2b-256 015b441807917ecf37f60f5a53ba0574d18036e5f07730a4a75b3aa86bc3c288

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9b7874f7df53e387f8905ed62da5a0923c455afd97798870a2ed6d06c7e8290
MD5 8e477dab08d6abb28e6d06ff05ecfa36
BLAKE2b-256 9bad8e50fb9295db925c79c9fdaf35058fdeedf7ea775f365e302c63732358c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.5.0-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.13

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 e7698f80ef75e8ee95f120a7cd45550287ad0c974484d3321d1fe0935005a61c
MD5 b5ebef81988082bc3b7c2e86afb04a3c
BLAKE2b-256 4be8701f9fa3d9ffbb4cf54e8aa29dee3ce1fa4061f546b9315d08dec69f4dd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ade24f20591a68ef6ec64e17c8cf3e482c8a29df8858a249f9f77eea1e663c8b
MD5 c8b3e5eb68df03d6aead377988676b0b
BLAKE2b-256 8a27862ac6d9e68f6b4ac41b1ecb068788467090d9a48ac738d4d6a6c4d2b915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d43a7c496bf73079b8bb3ada36d6f70a5ee334b8deb7be786990bbd1615e163
MD5 d8cd8077fccb74827c10f59de2eaaa23
BLAKE2b-256 815434c22c155c9bd1cdb8c90dd890d0e833d34dfc2581198a3f02207224f297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbdea531c4fdfd238f774ced3e6346e5455a6291f7e9424972b7e72ccd4f486b
MD5 a6cc06364259d97f25361313399c0a8c
BLAKE2b-256 e6b58e13547a5c92713414f13badd463dfc46fc30df7c97e3c5d72dcbc0a712a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 919f3697dd21a79b3e9a15a0698d050f0aba6e7d3447fcf1d755d6472b232485
MD5 7476a7a2bb09296fcfe5e4d29102b2df
BLAKE2b-256 d5474cbe41a028a6367326c85b7ed4436d386a87355fe5bc3114cbd22e3e6af4

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93e117df54ac3cd2678d54593ad64bb65d72536db1e3df55d8e927d2797d3fe9
MD5 9c1de4b18efe0cb10a794b7917b1ef44
BLAKE2b-256 ceb4da0eac92ad96a54a074a4446d9f2ae2df64baab73e58658474528d90ca24

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 2dd111d6a88ffdd4918390bc52323ac19b29e13fff35fec3d78c97c8ffdc0da9
MD5 61fdfac7a8fea65595a80b20bcc89dd9
BLAKE2b-256 89462b858ab4144dfcca76a94b8c8a66d87c637c6f51b9856a31df9760d8c18a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca0e50ad88de59ec874d61bbc712f42c59408ba3bb1486669219d9e2c584b048
MD5 8105b22b51605b34ced0de28bd58a27d
BLAKE2b-256 1ae64eff81162f5b77b2a9cf13d6c794dede657effbbca08a068d4bde391e7f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ab8172dd924e394229034e152ae1751f2ab655abc44afe49d364af8a106f621
MD5 2bd17a12d33cc8233755f909c0473e07
BLAKE2b-256 6f64a7aed00854c38c46b651479ab8614ffc8a98062d3af9ed1ca059f55347e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b96ef613b9ed28677b9182ce5b8e9c03d9eadcdc57a6feac0e9a1d95ba28c8a
MD5 0592d15dc225e2e4454e6d00fff47b5f
BLAKE2b-256 50043eea5c72474caaff69679506f9d426380014e452e6ea782f63c339cd3d39

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b0c2a40f5584633a5e01712f1a0974f6d0ab9fee70d29a813075eb63a5d78ab
MD5 e9065ac1072442679e84274907363e0c
BLAKE2b-256 a009f61f77cdb75ee307628fd75999bd85d33233171eb316380081b0b7c0c36b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ce873e67d93da1557ee10444ba1f05c3a10f9e86ba8b4bad527328d1f189271
MD5 da686cb5a667b63ff3ba483d1c67954e
BLAKE2b-256 ab5fe67c9b64e2caac945997bae5a544c6fde469dad9e4157b78e814bcfe6cbe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.5.0-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.13

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f7f44347b1d99aa6fc691b4b8119fdd72d6e82b807179f1b33e2f6773a267c2f
MD5 c447b3a6690294358d61d2f05ede5f20
BLAKE2b-256 9ab407ba22a8de992dcbad7d495ae5e30d9aa674471ebce7c679775b0081b534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee969dbb2de7cd86c8932e55de4200a1ecb61408b5e12ced67a72084948f32ef
MD5 fec9a2436cb3f3f5325b5bbfe1294f54
BLAKE2b-256 0f19bf673310988ff818fea9b8c3ff7316fb25694d5a5dc3acccabb51cdcf818

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0769df212f058541f6216dd8bbc39ddc44f4b353cad3d6b358cc6c3e1293940
MD5 8804cb9b06546bc6cf897e2a53a02dc0
BLAKE2b-256 eb5024ae904fa0204b6c051e74c3ce446b6f3a380c228ff8774edd0ac28c6dc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 923d0b62f23635e8a44146f91f99ae7ec3aa9da28e06ccf0cf0e427b69af7d05
MD5 8dbea771f8721413b383cf9a297347aa
BLAKE2b-256 811ff227cc1e9b551ea2f96750de82e3d91d837ec891d6bd045d9aeaf1c3f242

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d29ecf312bd4c4667eb490d7e9815e318b3998f4de898476cc1c98de4e3328c9
MD5 413b74362cdf71a4f1bb3d9021ccea72
BLAKE2b-256 87df8ac4c64614d3602b74bdf92b5376014012c13bb96c8b01db28ab8e436c63

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea879763e8465b09f9bfd6b53690a8d6ace77afa62250a607759033cb06fd632
MD5 2e117bb7a164e2cd2ddd290e26b42e0f
BLAKE2b-256 4b3cf279c1e970170fc0d1cd9071f28f46ef4a8440955e840f4b05f084cda297

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 798ff688b80067c1d304f91ecd01e3a907d324cd6c99b20a7f3bf243e0c0cebb
MD5 2fa061f5c0d82d0f8adf7880e43aaddd
BLAKE2b-256 de9847fe7c2844ee3524d75d2713eecccd5b937db8ea41333dc6724430bde302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abcf370e3a79b0878c7953809cca268f469f236b70da0389722a2e9375d65e27
MD5 2a9f663ee5c3b94794fd9f094e19e056
BLAKE2b-256 32094274bdef5d2f342a088c940982702221c4bae8bd9dbe0942901a0519ff2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f03cd2b58c0ee91488cc4a1df1c6c937689a3d1fd72a11fba039ea31981e84a9
MD5 8b6d43986649b5a54d3670c6fb698eb4
BLAKE2b-256 3b200eb916963447d039bbf4eac95a570e463f4dc86495ac08c56c3224b1d295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ebaf6d589be8a1a50b3fdcf6c7fb619b44055cbacf2d799750f3d4dcc60b120
MD5 f92cc0b01bd00c9d1dad43a7786c6515
BLAKE2b-256 5900b5696b6107d596f5b2cadd23a29ab2b93a3b0058af5fdb48b9d285725148

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34f1c03f1cc955b75821e4a9d22bc4b9e3b054850d30c6a74288b86893393128
MD5 a84ad1003b8f59bdf6263e97010c82d7
BLAKE2b-256 bb028f7490b4eaabf0d7b11c5493498ed022b311992ac9341ba79c57e4992e1c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6efcb76f657df9ffb9429d0abfbf656edebe29599c123d7c15ad27d5f00859c9
MD5 c94cd2d543496d4954f11bbc26b1a25b
BLAKE2b-256 aab49ce77d7fb256ece83352c1defb8747be6922e78659eeaff8426020f405ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8656e7449948b12c90384dac1cc023b832447c877c1cae657098579562d9ee66
MD5 caa54a9f1bd5193e1cf8942480735a02
BLAKE2b-256 8a666e42ea1f2f94ca0646de16f97272fc17ceccf43dc594ae674bc8a0059195

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d579a2216e62f19acffcf86edad8841e2689e83b75196b772dfae8e32fa1f789
MD5 d4254c636aad40919a7d9b7a008a819c
BLAKE2b-256 a16989adf3c339b28483b2ab16f393c03b0d33107df87a7b59c0f56e4c50942a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94fb01100db5bed60dae46f57b2df41faa52629f3849793023a1c53c1c55189a
MD5 5da0ff2b2c5ac96a46c1574f789de37b
BLAKE2b-256 ca11cb01cc2756221121ead7d11607b584e310e7e3d57c91c3ccfdcda84fd078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52aaf131bb18d65a518d53b5b10075edbe90f802c24faed61c96f6a7b9d34548
MD5 2eed2d721c70b501d4c83671353552ac
BLAKE2b-256 bbd48ed8af9efc8613933acf58f7cded441e3d61fe62ef0ea593edcb00b005dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1f88dce8d4b5fd3e166a0b06c530864690fb9ded5c3624c3de06e6588cb2a23
MD5 9a282199401d1608b65d69fbf68a0b32
BLAKE2b-256 15c4ff7239996ce06f9bf048a41f10af75b58cb00d92d1298269804cd1b110d0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73770b8807adafc47c29047e56f79aa1c828c39e70a9cb89501f901f0deaa99b
MD5 fd6d2b411498e708ceae25a90389b955
BLAKE2b-256 f8f6f2d2307890296228708aaf637bb0fedd82596ba22010802ffab2b8f0c760

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b50670ba5316c40dc4116685f88148711245773e84a5e49ca99d48f0867c8875
MD5 0c52231b76068d6c7f1fb7713aa19344
BLAKE2b-256 8a22eb156fa51e06e86647a458fc1fa702b96d3dca6c5966a410fbeceae9a24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be518c0f799de0c4dfc6ac0f2d96aaa798e5ebe94d937333c379c3441adb0e80
MD5 af50b469c5c9e83304526b092701589f
BLAKE2b-256 588a27a4e7467228dbb9d61f78a39ad2cf79c70b43575c131de9fcb508c1a270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a58bb90c502277166f1d29db4bc8daf7f4ef1fb5be191994383d5c93b977e6a7
MD5 d6028d5ed6aa05793d2a6f4717dd4974
BLAKE2b-256 de2489ede7f238594bffb364ab958bea303999d37ff4c956d6653583f9e52fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 056a45b9db4d1194e33c3ef87fef0da91b6633db740b32f9d61dd005d720ecce
MD5 84264657957481ed2ebba94cfd3840f1
BLAKE2b-256 ef32d9d8abe4030d4438e0b3a8cb2405aadb159d324b3acf92bc5e97bf3d2392

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 def6dc1df13a2e10a4199f4ec1e36c063b100d4b5da411bf506f489c6c6ac82e
MD5 757c327bdb3e2729825bde579f0f84bf
BLAKE2b-256 3792c87da27f56746dcb78cf9598314ad8b786bb0e39f6dfe56a380192015f1f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31c8914f477f868f333d948fd8b69c435363ae7e2b40a1eea5f35a274f1f0c5c
MD5 76227ddcbecf347f73f11700bb2947e1
BLAKE2b-256 434118d6089098bef28598beabbe49cb7859f33ce6b0d94b70126691028c0dfb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d31abe4ad86302f4fe9b43d5a4437a343d41734e359cad6759062444002d9ff4
MD5 bcc67eb249f60035abdead63f4fe1ae3
BLAKE2b-256 a18f96919c3f69369bef3bf04911849b7dc2f2fa11daa4f20a8c1fb17955b675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76e3d2f7de42c2943594249c816a470cf64889f9988c604a1dd8410f799fecff
MD5 148e84a8731ea0787e3ff261fc8a4c4f
BLAKE2b-256 602dd7582fc20196283be21e12a4ae9bd3021965795ca363aa2043aa3624493b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fde07f5c023861d721effafb1a4adcc0eaab20c659b5ff9729528387144e3eac
MD5 645ef49eb0fac5ee1a35b356ceaeda25
BLAKE2b-256 767f5cd7e78b5467a7b2be1b4e0c2830d130207feaa2d3243d8fef82a0f6fea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6edbf18517fd4678bfce8e39bedaaf6e18a1efe4c2a7ba4a361facba3a246ae
MD5 fa0f8242f765021b38a009eb7240b849
BLAKE2b-256 fbb99d2a5d329d6ed7089a5154ec8170a77e6765035f6543817ea91c88c2eb24

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49777537eff2344efcb44256f0c97c998ce5679a6db6407455197d74e237ef54
MD5 e693ecb1ec3f46d55c1895194b87e2c5
BLAKE2b-256 fa0de913efba5cacb7f56719f78474ebcfba35c964128a8114547a8eae696296

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cdbab939a3cb8f5900c5057fdea9402ca60afa7b58aae2d100d706c06fdda13
MD5 97c4db202c82034c7a5156a2e7b15482
BLAKE2b-256 fa97cf82849beec06113547b1b583ff3c85caaaca8fa3aeecfe3da444b7767c4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 96b72cc682aade83d5f9b2410136dd538dd2850c3ba205ef0768f80eb4bc3d8b
MD5 3968fcc9a2bb1dbf1b5dd0b73b5df78d
BLAKE2b-256 ff83d8a7a2ad940f379d907bb985d289554c69c0f183dd6306cf3238c51ff87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25032694786e31297e0a2c2d0a456be3cbbf3515c48ee938b10e3cbdbf30b6b6
MD5 c1fe399e21e0167851d2a13b34fe9a87
BLAKE2b-256 b83df6093c9510f62723d8004557a39eb1e4ae2f9f218a075cbfc31c899124fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08757063af897883b7f976ac4d070dccbf5921bb7e026fd250fcb72331e5fca6
MD5 7a26a34bfa5b5ca59360db369e6225d7
BLAKE2b-256 3f05332f9d03d99e0cd4624e9b1ee884e7fb7821ec6b1df3b9031804fd439ea7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eac1c15f6520e1d4eb33c2f3072359f6c8cbdc3333a661a58a31fc6935646174
MD5 67c0aad15cc768ad97823461bebf1150
BLAKE2b-256 e76754806b2cc539663ff724fa1071fb0095521465170e9c62cf421058433bdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76665f7c7c24688d6b6b5363259149f883fa798d1d3bb670103208311c4721c2
MD5 fec83fdfaec7e19ff8e855de33e75b05
BLAKE2b-256 417668fa6c62a4df6eef12a801219c3f24757d0112209103e37cc9bea0a64d4f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3345988413c44061c6b5b1c568b6f75ff5984aa6fb4c12e668711e42e4f08b74
MD5 157b57436b4b212d2f7abcb959c37eec
BLAKE2b-256 a2b92ec1963dab83d51bb5bae4bdd4a9a56d28d43c37f23bd9cc3d5e133d77e9

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Supported by

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