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.

Release files for turbohtml 1.9.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for turbohtml 1.9.0
File Size Uploaded
turbohtml-1.9.0.tar.gz 3.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for turbohtml 1.9.0
File
turbohtml-1.9.0-pp311-pypy311_pp73-win_amd64.whl PyPy 3.11 PyPy 3.11 7.3 Windows x86-64 Details
turbohtml-1.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-pp310-pypy310_pp73-win_amd64.whl PyPy 3.10 PyPy 3.10 7.3 Windows x86-64 Details
turbohtml-1.9.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
turbohtml-1.9.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
turbohtml-1.9.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp315-cp315-manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp315-cp315-manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
turbohtml-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
turbohtml-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
turbohtml-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
turbohtml-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
turbohtml-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
turbohtml-1.9.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
turbohtml-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
turbohtml-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
turbohtml-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
turbohtml-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
turbohtml-1.9.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 87.7 MB

Release files / turbohtml-1.9.0.tar.gz

Download URL turbohtml-1.9.0.tar.gz
Size 3.4 MB
Tags Source
SHA-256 checksum
How to use checksums
fa4cf43f9750cebaadf3f817fdabbcf892ef478a5ac8faa02df04b14642cc6c0
BLAKE2b-256 checksum
How to use checksums
c584c937b16b78ada678257d919040ac372f684d481bfbf1b6b78577d36f2302
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp311-pypy311_pp73-win_amd64.whl

Download URL turbohtml-1.9.0-pp311-pypy311_pp73-win_amd64.whl
Size 1.3 MB
Tags PyPy 3.11 PyPy 3.11 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
1d914c9c46eaca30bc5f357306e8a6887cead4d37fde223fa0ee8ef72e4e4e05
BLAKE2b-256 checksum
How to use checksums
0df0c1fba11b3db6757055cfbc80fb67a3b136d3211dd965f8a791684433ba32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags Linux glibc 2.28+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
82f9bbde63fa733f8d1ffe9376727d057ab6f9694cc2878de6afcceeee9e4c54
BLAKE2b-256 checksum
How to use checksums
8cfa08181e47f20ec52365fa357f176292b4de0e05ebc306cff17a16580e83ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
b23faae284a2750557633fba3988d3c1facc819006ef701df526c3bcb41f0d2b
BLAKE2b-256 checksum
How to use checksums
45436195f80a1aec90715df003c02bf6d181c3d721f81438a6092caa2315fb7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 1.4 MB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
64137efbae2c98aa5949abadf03df49182ddcae69e18097d53788ac0d701540c
BLAKE2b-256 checksum
How to use checksums
d44cce5abbd2cbd2cafec90293cca0b51d96dba798ea14223b5aa6437c7763d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp310-pypy310_pp73-win_amd64.whl

Download URL turbohtml-1.9.0-pp310-pypy310_pp73-win_amd64.whl
Size 1.3 MB
Tags PyPy 3.10 PyPy 3.10 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
462bc6817ec12e1fd6a2647e2842199ce7ca2d3e7f959cc2e7bd4cbe0127bcac
BLAKE2b-256 checksum
How to use checksums
6626bd8cc8e4204aaf8e036d975cb02ca73ab60a4de38401382fba34b8149d5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags Linux glibc 2.28+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
f974db838c4e4163b5b55ce6dea06715e281e33105af10b468507dc87fc95549
BLAKE2b-256 checksum
How to use checksums
7723add94360dcfe3595f3801b2748c05ce2bb22c8e18f8165bc31325b438950
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags Linux glibc 2.28+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
1ce2347e2f37b63b52a4fa88b50e0737220c309f434286282f4011638cc6412c
BLAKE2b-256 checksum
How to use checksums
66bd81b5200fa4eb7dd6e2df7e42bb1ec1db98dc597e705fc0bd05b612c8634d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 1.4 MB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ba74e01f1652c0fe36e4e5a680b2350bd218b9d4144e04c15d8cfc77b8fade9f
BLAKE2b-256 checksum
How to use checksums
61c992d2896677ed82772f2805f9b5b2391a3e26fecb8f219a431c6c4ac9ffde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315t-win_amd64.whl

Download URL turbohtml-1.9.0-cp315-cp315t-win_amd64.whl
Size 1.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
a9cac811c5e3cf02202b7e14d66fc4c897901a042511bef3e7a5b89abc0b6f4a
BLAKE2b-256 checksum
How to use checksums
acae86797540c9f1ace630ab745db6d70263ebc322e83526552f0b2cb16505ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e131d0c827bf1307052d970cd1809888a75a80479ef44cd862321653dfbf6cb9
BLAKE2b-256 checksum
How to use checksums
db5a35a979a98e6019d1833096ceec27d6ff2b32ba8c556d2a1faf788ad0477d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
689cc8b651fc45c3d95c8de61befef10ce381eda9fe06313354256b75bc26d16
BLAKE2b-256 checksum
How to use checksums
91bf52f760e524910d718adce5321534ae76a54a6ef449967f8dee6bbf150cb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a8ceaf53ee3dd53e9e66102c3e876840c6934c0805c737e24e5a0ca1ad1f19b1
BLAKE2b-256 checksum
How to use checksums
519983c3e1c6b67450f0802bba780bfe8009456a4938c8aa0ab0db8afe64f5e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
357fb1a01aec3b379e954f3838eb2a9780d8b924087fac53be905be78032bf7e
BLAKE2b-256 checksum
How to use checksums
9d005b2c06e096afe3022c776ccccd85b9ba5488238f321b65eb18c170dbfa70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
15e7f2c280f52542e1bd1c4a9137827d7284650c07182c9301ed252df22e5bef
BLAKE2b-256 checksum
How to use checksums
8c5fdd09dc81eef02985aa9b172c503aa57614cde874d8dee07a22a614eee24e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315-win_amd64.whl

Download URL turbohtml-1.9.0-cp315-cp315-win_amd64.whl
Size 1.3 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
d02bd2b781f07379a9fa3ce61dc392cb7768b079bc4e91396e02745afcbba463
BLAKE2b-256 checksum
How to use checksums
540b3c1bc8266e1c8816cc020b6639e24e778927558f3fc1a0e23c9e0735d339
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c6bd6364d4b8da2a679abe1560d8b5f9242e04da4a8bfe5689b3938b46a89081
BLAKE2b-256 checksum
How to use checksums
bd6090a11cf309af189f159c700b0f375ac1c2b2e1d9ee5b646ed5ac5ae1e4b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4a13319ce80aabf05ded5a4e5384837b290e63999540890e171c8e34b5c43003
BLAKE2b-256 checksum
How to use checksums
0ed2554c4f1b6c45448bf2f1990504f7911249d758c67411e82c51bc980a92c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp315-cp315-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d7ebfabf36ec4cc5d4cb2f66196945ecb29d55bc2f103ad50132f9c29003ed15
BLAKE2b-256 checksum
How to use checksums
dcaf6625e9705ced751090ea64abd43ee7abd504492a216ac3f677230e417875
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp315-cp315-manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.15 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
aba1068d07968d0c392371b09799c92919678c6c63041433fb351b8b4c1eff3d
BLAKE2b-256 checksum
How to use checksums
7326f2702ce190fc8b7ed34b41262a1494e551659de2c4619294fa44e6c45531
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp315-cp315-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1f375bc3a1475b5813df8a72839413c885b655a3c9bdc40ddafb56c37c18ae4b
BLAKE2b-256 checksum
How to use checksums
7de99d539952dc44c0519f31207480f9957e7c5d04b2a883e8a83f8fb47de534
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314t-win_amd64.whl

Download URL turbohtml-1.9.0-cp314-cp314t-win_amd64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
76c4126f634466621485bb5a8d22a00bb4df81ec761cb27a862e170b7845dad9
BLAKE2b-256 checksum
How to use checksums
f54622823b5c8525aede33d5131d34384962c54425313d5e4728e2bc7b8f3af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e41ca216331705f8171a49a91614119bcd3acb935f935739fa52448181b7f3ac
BLAKE2b-256 checksum
How to use checksums
0035e863d2ab4f012aa288f79866a720f00569f4859139a1c9a9f10cf0b89a13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8d54e2bb2516f3e36364930e8fcfe82cb2c3783d8d490500185c0c3bcc78cf5d
BLAKE2b-256 checksum
How to use checksums
e165c6677d7b2b5fbdb3be9fd569b2c9fede3eedd779d9d8bf0d751a0ef52155
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2dfe94cbc846d94d51d9b66ac62ccadba49d437d71eb642f21dfab36cf512e4b
BLAKE2b-256 checksum
How to use checksums
bb09bab7e3de99cf326c43fda20440f3f74dacd55a65c0cf6370dd62deb2a008
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1d8062df4b6e4fd2e0dc7cbbbe483ffac210a32bde7c0fac6a6d52bedf704350
BLAKE2b-256 checksum
How to use checksums
bc6a78979b8d9f5e89a7b45730e61e400235a823c17ace3af7d340da5d47d7e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fab7b1072858ccd5e4cd3d583d7867321a312b8bc69feb160e4912fce858c3a6
BLAKE2b-256 checksum
How to use checksums
3999739248fe0fcc28ca4f4d735911c3c95588f537aad6590f560d956559cc94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314-win_amd64.whl

Download URL turbohtml-1.9.0-cp314-cp314-win_amd64.whl
Size 1.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0905d79ff6b320783d0f2e0b4961345a765f023eaf2d07be7e36bccc3fe311e3
BLAKE2b-256 checksum
How to use checksums
fda2898f8139ea4821d9f6d501e2ffc66a4d73f4cbfac106ca4c5b430ebaec48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
11f654ce37ea8f7a40a6c6e766bc896ad6306b90bcd89991ade67b22c7353b9a
BLAKE2b-256 checksum
How to use checksums
29d1632b6aed7286010d0dc15339ac4c838d6a388f74655943195de927f65984
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
da0bf9b4bea71b1ddadf8c4463d7099a38c47ebb9d5d8c0bcc37e98de6a1fdc4
BLAKE2b-256 checksum
How to use checksums
16d43bc38f39c7bb18c680b8536172adeba026f70b700c2be1fc0f15ab62c022
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2db7ebe4b48c5d4f3c2edbd3be71a376333f7da1e1644014b935c1306a8765b1
BLAKE2b-256 checksum
How to use checksums
c8ba51f67741e46c7554b35d7b2674673d75bcacb182d23943945e58577238ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f5de09db7a6fd377ee5a1d9d257e93befaa95885423844c5d87ef2e76917ced9
BLAKE2b-256 checksum
How to use checksums
0c82be1bd57b3a350b4c06fec58ca608b5798c789cfdec8728d16bc29aa4cc0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp314-cp314-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
db8892bed187960e2c43782a5aea3760b1790dee494f796eb78947d8a51f04ef
BLAKE2b-256 checksum
How to use checksums
42bbf22d9a296e7e71a9a951033d2bf7fbdda6fe7485630151fdf00732f5314d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp313-cp313-win_amd64.whl

Download URL turbohtml-1.9.0-cp313-cp313-win_amd64.whl
Size 1.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
b3bfe32cf5d352c29137cec29ee6f9903b5ecb13d3ac5d3bb30ae715632f206c
BLAKE2b-256 checksum
How to use checksums
c69d5ea56ad97dd742ef3f61d4f490de1a2613a473ce8fab707208cc3d1d4c1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f5e32ea114fcf527b4e999a7d8752e7aafc5f73eb3319c5e373c7d6ce12e2f01
BLAKE2b-256 checksum
How to use checksums
ef37b488aead5d364c93649dfef5e26293676b009f6b929ea70c9dc9556cc43e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e7503e74d43c18987fc37c69b41aae5d48d204950fbeff0c8ed3b9d75f9caae8
BLAKE2b-256 checksum
How to use checksums
11907c09f636aca59a7b00ad87853234e71b57e9834d033e0facd26c6f465152
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dde82d903625b96dfab1f64211aed579d6aa14897ce4b3703f0984a171132bf7
BLAKE2b-256 checksum
How to use checksums
2932507940a025a19cc09e9032377615611db8142861063e27ae4a10b106655e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9c5119573365062b555816a7c117098b7280e116ff3e2d4366fca7ce65516488
BLAKE2b-256 checksum
How to use checksums
7faa1fc75877e42d3832eed97e68d2aae2a79b3d4d1b6d173a67d9612d3d18a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp313-cp313-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8660742dcd904144e4f6f78cff21232dc37de423a343fac5ec4258bb4bba8d7d
BLAKE2b-256 checksum
How to use checksums
67784941716037d0cb58af84588cc228b9d763e45645c69759060b1cef9d5ad3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp312-cp312-win_amd64.whl

Download URL turbohtml-1.9.0-cp312-cp312-win_amd64.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
96991682131fb0be72097663354be87315826b0f3fd5ea84e3589dce3eeb482a
BLAKE2b-256 checksum
How to use checksums
cbd5835981088ea1b0d4bbc9d06d6ba078860f6184cf7dcddbe4def6dd1db6f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f9d05d2158002e44b98f6960128ddf965ed349c48c21deabf2615ace1a61a082
BLAKE2b-256 checksum
How to use checksums
ab3fe318960bc759cbbdb80135d0195f91c1eace64e61abb8ecc856b8c55eeb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
37d9b7acf13930527518d491f33068acb24fbde9e8be8494eeb02998c7ef6147
BLAKE2b-256 checksum
How to use checksums
15a6937464f0e347a03e680feef59a0d00b633e7e5e5c131a13965a9f87687f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d2ba6e53791e56a36251ae3ebdcdc01fdb6363b1d089a2d8bdfc2303a1b7fa1f
BLAKE2b-256 checksum
How to use checksums
77632e49106c09a164c628dc393784157cd0c7b7590312305433bc2cf103010f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 1.6 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
10e3e0cb6a4a43138b8d7a3c191fc21799d0298fc495deac9efe91c3880c4f1d
BLAKE2b-256 checksum
How to use checksums
09e116f653caa07c2fa73af0ac1588234090b48a14aa1ce887c500d05528a405
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bdc7599a7a94c12e1e7bcb4a2fddd1c010fc21c308962f5b22fa81c724ddbe57
BLAKE2b-256 checksum
How to use checksums
a508f75fcb1672b4dc1ea162f9524bb9819ca86338e27278d851505b180f66ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp311-cp311-win_amd64.whl

Download URL turbohtml-1.9.0-cp311-cp311-win_amd64.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5981b2dd309173dffef2c37a868d0a162ef4e007cbca7e734857380051a19c77
BLAKE2b-256 checksum
How to use checksums
8473eaf02101e270571ff5984cc6c249258d9a05684754fa43fee978e12308b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aadb54fcbdcdcb2c7b7c6c1791e83931d0eea501b3fde4a7ea9b63e289c432b4
BLAKE2b-256 checksum
How to use checksums
ed6c4ebe3c38c1b4d3822feea09004997a22f99b6e85e8530556153ca9fd4093
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8d312156fab112d1c54c07cd117221e7d2529658637ef30c7f65de2dc1fb5d74
BLAKE2b-256 checksum
How to use checksums
7cdc5f71d4419d1285a6702f0eb6db52479a4bfce6bfbc1ca6abcd29b34ff576
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
844e361053d85d9e5257bb43829408fcea47074b0589c7b32161452e60e85a21
BLAKE2b-256 checksum
How to use checksums
612936d727acae3b01b3251f66c8b25b815ad1e83542ff6a0aa25220e2419cc5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2db1c7deb31f9cff94631771c5b1ab10431d844399306c2ea72539fbc7dd9d0f
BLAKE2b-256 checksum
How to use checksums
370461cdb91a0a6ea56bb9cb2c2408ddfbce80f5368dc96be06bf1737d6fd3a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cae0119d2a3297446b8d5474c52d05faea047100ba25825143352ce826c99dfe
BLAKE2b-256 checksum
How to use checksums
cd75b37ef44d0b18048af1dcf43237acf8bd0fac76ae668e645e736a956a780c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp310-cp310-win_amd64.whl

Download URL turbohtml-1.9.0-cp310-cp310-win_amd64.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3f6be2e08c8bfb253d74a409681c719702f23204ad6e31aae8c405208703cc63
BLAKE2b-256 checksum
How to use checksums
1d00f53015ada10dc92513ddc64bb7d5f8f808d6ac87f3e5b3bdc695843d3506
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL turbohtml-1.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2903e46a03ee9a89671ce37854bfb898a0db8a4f02f11d4af48dd0fff0afa498
BLAKE2b-256 checksum
How to use checksums
81ed579d6153fca3b0df04efb1670924e99363b47f806c5b1425a01dc6915869
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL turbohtml-1.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.6 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7547db5b30889f8b8b18a7419cae93622440896d9b371ec92a32e52722d064ef
BLAKE2b-256 checksum
How to use checksums
d2c6461e6884cedb92f62cf450cd02e5b1a27fc3d53f3fe9d45b1034fdd9741c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL turbohtml-1.9.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 1.6 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2cbb0b07928b0e70242d02a34a4dca43f0dbaf93b989316e174135a59a7ebb91
BLAKE2b-256 checksum
How to use checksums
bd391ce4d6059fa4298ac5795e4f054ce862ca988d17db18737459a7557392ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL turbohtml-1.9.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
90f0984b18b8dfbd52e137a339b2f2e15914aa1f6e644c62ac3191cfe170413f
BLAKE2b-256 checksum
How to use checksums
0a648577ddbaa05a790d136e4078a281a637d144824b6ca1185054a451c3be7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release files / turbohtml-1.9.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL turbohtml-1.9.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.4 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
96b2da587e5283bc44c69ec1811b79774eba68d9c9e99de384004f7d32b89ca5
BLAKE2b-256 checksum
How to use checksums
d8149f511eb398fa5b3f939327c58750d6d8d2f86351a4406acad0feeda31c98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 14, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.9.0 This release

57 release files

1.7.0

57 release files

1.6.1

57 release files

1.6.0

57 release files

1.5.1

57 release files

1.5.0

57 release files

1.4.0

57 release files

1.3.1

57 release files

1.3.0

57 release files

0.4.0

49 release files

0.3.0

49 release files

0.2.0

49 release 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