Skip to main content

turbohtml

PyPI Supported Python versions Downloads Documentation status check

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

Install

$ pip install turbohtml

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

Quickstart

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

import turbohtml
from turbohtml import Formatter, Html

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

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

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

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

import turbohtml

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

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

Capabilities

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

Performance

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

Design principles

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

Migration

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

Documentation

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

License

turbohtml is released under the MIT license.

Download files

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

Source Distribution

turbohtml-1.8.0.tar.gz (3.2 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.8.0-pp311-pypy311_pp73-win_amd64.whl (1.3 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.8.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0.tar.gz
Algorithm Hash digest
SHA256 4cef8dd94d426331d08d82d55cbd9a22dcbf40fe2f951ff4dd4ee9bc6ceee918
MD5 5dbe90ade7e91e83428a58096bc600d5
BLAKE2b-256 07b38f658bbfa9dd75e396daace1b9c9d28056fe577a86dbe77283c3cfb09329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 676331575d7fe62a65d75cc304feb1ec832a7184cfbf636d9c2fb3606166c8af
MD5 966ab1912420c0abbb20e78962635a1d
BLAKE2b-256 1b98811f5b7a2e28021746131b50e2da9b6d0918f72a2f4565a34869c589f11c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5639e2d6b52cc2dbf090a75c4d6c7914d146dd725609a2a03c4148b71d48bbfb
MD5 6ae8bd78df1d61234174974517cc73ca
BLAKE2b-256 c3f63085f977b7dc56169aee1f612f3b60764f6ab60195806fa7260900183bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8caf7587013f12c1ea37b2c5682b82a02744c2d5bc3a43d787667335b57b9823
MD5 743ed60183557999fd7052a81592d890
BLAKE2b-256 7ce5b4ed451dd8062496a3c3dce8467ed8e1d0e995527bc45fbf69c34b17049d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09cb68c2c3041ac7093e3d3b2467d0e1490846efab4883cec974c16ae5ba2bb1
MD5 32f722cb7afa9bd034cf9aee3fc5e9b9
BLAKE2b-256 50a4270af578e00fcc0cfb572bdcc0a74441abe1bc79645f43f84e98a5039c95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 748ba229a5f856d7d7cb69e114082a72752535f9c3acd1c3e3a675623dafdbaa
MD5 ac424385b1c1afe70ef8edc1012d308b
BLAKE2b-256 5e14d0081f25c3ea005b425b254e6f9464e7c16d70509fbdad0cf64376295915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82a113ce64f243e627070685bbc495c9c66ba24ed6cb708b3c2563dfd1450aff
MD5 252509f18e551c18f652ce2169225caf
BLAKE2b-256 5b801c39f1281f49baecb9ae4a30683cf22cdb2cf63e6088c99e143943715e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2840dba421b46fb193f0f6376ee775d80dd17db9d7c98da9b7acdbe2ed4508f0
MD5 cd4fed774896ea73965d89d13b41efaa
BLAKE2b-256 e497afda90ad06d8f4c814ccc0ed56501b5f333c4167d4ce62e9d877031c626d

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8582e926af16022d2661528abae82c94a121fe3adaafb6e4ca5b3d83879f0904
MD5 92fce4558781304831fb7b04fadc5790
BLAKE2b-256 7039314083db28f91ddc92012b45301c2beeed8fc9bdcc5f9a15eab4734bb486

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4ef3fcb4c91a639ff38240af16732d991565b564d9803153fef9d53f01d9b1d1
MD5 ad708dab4a18d209b8586df1fbf7bab9
BLAKE2b-256 4dc6245618106a9e145f4bf0374d549a450cce2808a38a13ea530f072a6a3920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61c37583b5551c336efd44d41dbad67cb7ce538bb1e6c0f15578c2fd53775194
MD5 425f7ae3296fda9f3ad1669e0180ff04
BLAKE2b-256 f494e1f086a772c68f273d0d6899c2c448e4d9e0bb9ae735e02244800cf4b464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22a0f2d33bccb133dd3154c10f2ae5904807c071c2c10b6538abdfca034732bb
MD5 5dd660233d1bbf9201fd06a06941f1ba
BLAKE2b-256 10e87c02525edafdd1ef6fd7daec29ca04c5e7ff39a3422e637dc9ac79adf842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4db82a27c4e36d65d92381f130b268e52c1d797527fe67ed094091bbefd5a2f4
MD5 a487012e209c2b78e3c7b982cf087a85
BLAKE2b-256 bb73826fb2971d42eabb527c0ef4f35da2d6a7953b345839f02041f0efdd4d3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e7ad483bd0ba8f5c669d4d0b73ca395986b7d0b3a2213621eee715d333bfe4d
MD5 00b3afacdc9b80f87b45135e7169d703
BLAKE2b-256 778d5958ea269ab5a4679a0cb727fb6f9a510f0973a7043d764bd6a28fad6f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c70f5f59643acd96ad9dea745dae6be88ac935e721dad03b1fb24f1b3d6b4a0a
MD5 f80ab23c80e597dd2650baa93ac01b1b
BLAKE2b-256 0e7cf2fae576e46fb60ecd13e1d2bb820de22765b52f41753c39717f3d634d76

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 546a86eef199bdc140bbc5f30f8a2c989384cc1ffbbe2d610d2a0914ce13bd18
MD5 6ccf652f8bbb5cc68010f101b3663f0d
BLAKE2b-256 f499de4d9052a9d99635d755e3bfe15b45febcee2593d49a4af18ce8af25c723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c48e4efc20a713de1088f49a92dc99708c7e8dee855a17f5346c77cbaf5ed00
MD5 fb36f9d0cbf0a94650c64402f766b83c
BLAKE2b-256 1c2c4bccc418ce06d290220bae32f7880f9fc03f6ca78fc1f49c76010531e5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4536a2e233bbf297f86ded6c39a070a7ebdb0a6066ffe8edc5361722e0a34050
MD5 66478d4740943f99a85e418d8184de43
BLAKE2b-256 a23d0d0383d1f2f14f11aeb152f3c190bd32239a99822be6fc8dbf0a6dca852f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea5be2c6c16bff42e5a9ca0c0f6d78897e73071d996ef11b8843b7443f4dd510
MD5 0eef08abed107522bf93ad9777950c38
BLAKE2b-256 5814aee218247cdfe91c724594dae716fd0e2ccf172d5955eeade094fb692248

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9535b864cb39674dc5e5310f50de4dba256cbd001471a11f36f7bc2bc519fdaa
MD5 aa746d7ff8677d823c4cf9410fff11f0
BLAKE2b-256 9eab9d8004ba5ddf66ab322548622edc72775102ac1045df700ac0dc4b5817fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp315-cp315-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19cfe601277911a30009057f42c7d70506b61dbffb8881d162226dd6f0a6c0f3
MD5 e3a6d99c46ec02c6e3d5e1a8d30754b0
BLAKE2b-256 7fc8e2526d2f70e8bde0714b9c3aea02e108f83cd7e7aaf2bd63e583a9d50ef0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 56032e7d9ed4143f8fbda4ce848e0bbf6435af8ac0ea2a22af99c6ced353da2e
MD5 d5ac9f3769e279bfd883c9a8d4434a68
BLAKE2b-256 8042884cbe2a0d78a2e23e140205f54c77fc5064e6127b0f4d969bac567c9d87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79d2148d9191f07f13011715a779f58121cd2193f1a558337df1746f4b368f5a
MD5 a20792770191df48e6bb6d674c774f44
BLAKE2b-256 41b354f4c5d65896a321426dd0f9ebd763032a12c361804525a0756fdf5cf8d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66ec2a5aa1f7e9885dfcd54dd900a28af9ea87791a7ad161f966c97bd4ea8799
MD5 6ac48aebc8ea0348d983999d09ea9431
BLAKE2b-256 ea377f9f0c6f5243e139a238b4bd001683b2c48143f772cf90be3bc0d9a90979

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50384287a7544c1d9b6daa9a6ad42cbfbd896c0c9bb0d3316cc199665466aef6
MD5 e5cc33788f55b0528c6a1039f0f4981f
BLAKE2b-256 6db818434c6fc31f970f131c75458d3777fd0ee0aa3a614b9485fb0028768b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fa871295e39f7caca5345ff6967a1905b28dc41f6cd3a09ecfce82dfca49b25
MD5 42797db1256264236584177cd42d1fd4
BLAKE2b-256 68de15a6681a4aba1964a1ca7c7fe1b4d46201b3a68b7d997a3954579708edf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b692dd884ca75a70f1ab010080fceba9b2d14c9c7dfddaa1e23f3232815bc2f4
MD5 627f3944d7f9958fd5c5a5cc5f0bcde0
BLAKE2b-256 2f35c430e9b54e55bbe7b09c907832e36d89306a66ae0e5f11a41997fcb45d90

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2883c1e152bb7c53892625fcab85e79bfab084191bd4d60885893d4aad659f2e
MD5 d274e344dadaf3eb88ad0269aedd35e6
BLAKE2b-256 fae71447669981bd4fe3a0331c8d8dd390adc168d4fb8073a840bfc8f3f91e03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c23d4a9a88c8ee46f2205a87682bc5dd7416c0dc56b2028e8eb3dbb0116400e1
MD5 3b00ef2d7ec2a770ff8c30e798db5788
BLAKE2b-256 8a25d3f8c77f63454d9124b257aeafdf6bfdf82bbe821f398b359f154224f325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 911b9739abf14e5deebb9e62f2ce7fd672dce8a966cce711b0572910b53748ee
MD5 b135261a2479e277a3cab2783a8d5664
BLAKE2b-256 37bb1cf651dc1b3857c506bb81dbf19fc3ebbe7fded08f2aac5b151e37e390bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de0783a17cdfcb4a48e10cc3c9cddece72398436e15262eb05e0275307c87c73
MD5 2b7e9cb5d989dabf975f05b7474372ca
BLAKE2b-256 ffaedce0e27227bb6a291493f36ca2f832ea32e6e813562053779e82e131fdc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f0a1e927bbdd0d268fc1786cc1abfddf52138d4d813178f5b692e4589788e1b
MD5 634e8fb3b52618bf62a29f84a3b20f56
BLAKE2b-256 7f8ddd047ff3ce32b8295874122b21baa98693584eec6e43bb285987b7736cbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c195b1fab7dd3f37991031ccbbace16df9d7f2fc69afc86818ee254789026b6d
MD5 6a8ea1ee5b723d2ed183f15bbcf13488
BLAKE2b-256 a4a04fc92eb1a57fa4816167f791c4d97721ab77b90c3253d43014f62e4e20aa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 80c4f2a37010bd8ae854b30fd37350401cf5a6f3efdde9b10c4a87506eb355e4
MD5 58731f9bf9e7f2883764711fae4b47a6
BLAKE2b-256 e82241edf651600c713e3429d3df7a3a0f62cc4214f583ced83285d658a94353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abc69e6a3315e0b4062f2c6ed9091ad1e6565cd614cbe2b44f754f358e218493
MD5 fcab15d813646d131e3d9aea8f910696
BLAKE2b-256 090589c8c6d158d1d44194eb31fa198579077fdbeaa95c416b087f30b556b0fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 745bea11389d349492b8813359cd4e489312d50dea583a67f7fa460b70d2a10e
MD5 4e99c8314416ab36b22e806c4bb58d07
BLAKE2b-256 2a974cb16a4586eb03bf294598f702ecb72e102eb7b49d6575ccc5bd02d6500f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c628f2ff1c7f8729a04f9cab3633e8d3d13120130752265112f57d0dad978d21
MD5 20e017819e3ced1321a8b3d80032bdc7
BLAKE2b-256 1dd28ec91888a9a3ff47ff94bf1474759810c9cc484c70b8b77454199e0925af

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 538c4efd8e2676f8e8ae2a044363150b772cfc6006fdc4df14581d26dfeebf6d
MD5 09b8790028af4439d3d5b1dc21db5509
BLAKE2b-256 cc7fa2af47ff0b87030a5afd54e1cf7aab1bcb1844b1b71c038f726ee3debb47

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a58fd41215d35a3df3a4fefe56eb45b65d221211cf1740e1b2f74258723cc38e
MD5 5d41cbd94873c68f3874cbd44ed8ed1b
BLAKE2b-256 5db5b0ba982ea833700026c3b36cbf754f559ea66f2cd4a569c74376857b3c3e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d480e1e8b6fe143bd0f79643c63fb3d35f5d3ce56f03a26a513178cc6d1c9216
MD5 27b32acdf5b2172f10edae47c00e5a90
BLAKE2b-256 3f9b301ccc091afef302d8eafd122dd75bbe081d3cd2d9e5bc99c3984ffcc35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30c947e332d1df0fd0c543b9b145fd4823ea7c21ed976edf6cb4b6f9d10e0f2f
MD5 30d2c3a03132683decedb8f6269be806
BLAKE2b-256 89793f523d12f4282425d58623d027310c1213176674adeda36c59de8b85943d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03f9f1a5f98a0317600614c98a833fae2fceebe1896c1a5433ef4a2c0c098a45
MD5 cf54b835f07967a02582ae8870af1aad
BLAKE2b-256 4b78bc91550d16cd1ec8448586c9052f8da14f800d806d501e99fd74cd617e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f076215df822665f2efadab43ceebcc0fce7eccf4fad8fe330aaa7daab28899
MD5 0595c5dd42fd86ba8dbbf9d21bd4f660
BLAKE2b-256 d1144850eafcb14a3c44e5654ed148d5471c3204815eab915df6968d476a3379

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29caf94d012210a4f9dec90009018af046176c215529979782e7f984d27a7ed3
MD5 c3610ccbe61cd951ee01c8f5c39127ef
BLAKE2b-256 3f2830cf6d9a24987bc5d420aca6eabeb23e645c64560d55386bf186b4565f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97074f1ee058d0fe838018d44c7735c495e0e382b812682bcdf7301d3cfb74be
MD5 a66030721c0e75c66c7bf39c1d6eb7cf
BLAKE2b-256 214de69a1dce96cd8f66ae67b2759aaf48322698550df8688abe68db5dc1aef4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 749d365baf01de718fd07abf80e627f34ca735936600f0c56fe414982731bc29
MD5 2bdd62d7a00770e9bc42ac540f18c745
BLAKE2b-256 4c21b1a439bb8a133a779c19ad1daa0677a72a1ddfe7811099e4a9dd9e9127e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa594d6a6ef5605c3a960f3f5bc6d1bf79227d52aa81a6a7bd7e59838b92661b
MD5 244e27ffeb812bfbfeeb80eafe7a131e
BLAKE2b-256 dbd3bdd69fbe6e09e78651acb955a912c221af1906bb9f8dc52055396146c8e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63d1736d1f1a14c0875ff1c46614a2d275eeea37d67350d067f373f7f982584d
MD5 a193745f5f7308ed11988f7423d21792
BLAKE2b-256 00fcc30d54829771d93cf4e205b5b4377f0bf7fb530801707fb62294fe8c6d88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e7ecb980d67ae62142f19045904ba7c4218f20239aa87231ed6b10a1660b007
MD5 d253aa803c0fb6f27e398a597bd960e0
BLAKE2b-256 2fafff9bd7580ccba5b7d1d0a8a231339e9ff62b943b8c94c6625f6b99c7fd4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d992a9d7846d1de229462959b87698a3b8f959419c8742246080dbe509bf9422
MD5 7c8aace0c70b87afc769ef1c55a7534a
BLAKE2b-256 f51f2499791ba665dadbf2366df46fa744c241c9956792872de6aeb32dc9100c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66ae877bdaf986173f1edc4b048f5e20879547cab2c8b0a7abe565c09b6f3eb6
MD5 2377ec44e14698640f7b7e4b61c43788
BLAKE2b-256 cbf4b121e8a868fa9cd843836da578ee7b33f1ca31064c2e5cc4425c7171cfe7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8b5da40255fb15dd1ae37652cbc0e125e2a1b643df4844f1bfc3b3803aa6a743
MD5 378200ccc2c11c4ca654886311b5a162
BLAKE2b-256 1019e8b5bf932e669877f2c85d4bc8671cc533689e781410beed59a44bafb89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39077329510b82ceadf19283a8c9905aed8590846f66587261f1247ba50dabc8
MD5 fb3fd83033a9875d91b076d80444e0c6
BLAKE2b-256 3ee2ab2d3c3edf24f65acfe977f78d4ae553b5367b0f3eadb63443eafb34d342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7299eee587411cc436b330d93b13cfe2443bec180681bdd8d461f6c45c8e7c95
MD5 b2012a71679448500faf8c38a14fb16f
BLAKE2b-256 f250c5c85787435f8e9552c525946eef510776a4952cbf68604c554e594d6165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0c18b10c3d9113c56d1ea26e4d9618f59b3c01d7808665ea9f2c3109f0ff2a4
MD5 5e226ae531b0fe46c2c075f1d59288cb
BLAKE2b-256 f72827c5bc5e464d7aac9b23abf5ea27a25c88736ee40d463ea78fbcd143f0a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7dadd0664a8ec7e1ea268afeb17e04c7701b8f374dfadb17f35eacd473479c4
MD5 4b9e6ac39103767b62ee41f7bc83f42e
BLAKE2b-256 78ef4ec53e457503ceabe4f0fdca395215c1f51bd8ac8d47c0f482bf57c5b8e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.8.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21977fa9e5dd75e0d1e1234598334e2da230a12ba6196e1569f99eaf9336ba06
MD5 701adefc97fde626e43a4846fe6c4802
BLAKE2b-256 c004ef861e03b7b42706b44876ffdfbce76aa27f3b6a046bd2b58846c84c8693

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Release history Release notifications | RSS feed

This release

1.8.0 This release

57 files

1.7.0

57 files

1.6.1

57 files

1.6.0

57 files

1.5.1

57 files

1.5.0

57 files

1.4.0

57 files

1.3.1

57 files

1.3.0

57 files

1.2.0

49 files

1.1.1

49 files

1.1.0

49 files

1.0.0

49 files

0.4.0

49 files

0.3.0

49 files

0.2.0

49 files

0.1.1

49 files

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