Skip to main content

A fast, fully typed HTML toolkit for Python, powered by a C-accelerated core.

Project description

turbohtml

PyPI Supported Python versions Downloads Documentation status check

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

Install

$ pip install turbohtml

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

Quickstart

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

import turbohtml
from turbohtml import Formatter, Html

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

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

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

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

import turbohtml

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

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

Capabilities

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

Performance

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

Design principles

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

Migration

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

Documentation

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

License

turbohtml is released under the MIT license.

Project details


Download files

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

Source Distribution

turbohtml-1.2.0.tar.gz (2.5 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.2.0-cp315-cp315t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

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

turbohtml-1.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

turbohtml-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

turbohtml-1.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0.tar.gz
Algorithm Hash digest
SHA256 5b3d6e667a2ce54536dcd2aa70e2b000581f847948f31faf249b99dd75ece394
MD5 f13a70bc7f8f2d67107aabc5eed35e3a
BLAKE2b-256 8806e66ce74888c944ef302cfba8d6e8c3732b036da9b3de9f98a5abb4b87bbd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 84d699e336cda3abdf89ef04b88d5657b638391bda94dd5d522fde7c668d4fa3
MD5 018a254deed66d08497525cf57072a6d
BLAKE2b-256 437e0a20e1f80a7985cb09e1f562a69e50ec0c3e841717f671d7ef299af80f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef8ed919e4588c8bf65f5feff4232b5a24bb30bc2458ad7a31d501490a75d33f
MD5 812d2c981a1b8d418a7808da15087786
BLAKE2b-256 b8cbea0f5c558fda1ce7e736e104a65dc88b0a472ef9b2b1c6e46e3f5e983e61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8808634fc2c77ba295940b84ce5f7f8faf720f34023d8697d412a90b1d2b54c5
MD5 1e71a8c46b4fec6016be0de33e92579c
BLAKE2b-256 8487204cdfda676ba05a58a9782b4b8acace1c6beda5f2ddde90abe1ffb4289b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ed9829e62756eb927b2960b12a08e175d664b937dca99c368d2b3425369b65b
MD5 74cec1ce038fc35d9bc2377d1f8f226d
BLAKE2b-256 d9fa2dda8cf829e0bfeb8e936bfcb97433ef93c3fff474500ed9bc62e501a16a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85c1d4e19916f4931325ac9c1f656c0343a7f41665fee9dd349b4a0133163a3e
MD5 ebe04b8ff54177b8424583b201d3b185
BLAKE2b-256 9854f53a8acc83fa2d67cadcef4fcb4711d0d9f800302c796582c6e0217ab0fc

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4b3854553d97bd5226e8f4f9c94175c3f9f8768ab7ab05b2b51db8f25a688e4
MD5 3874b6e421758860b8a89cefd80c8307
BLAKE2b-256 eea1d2295d9fb6019ebc1b95e05d9aba62ed1743f49fe6edb540e47a1c2c6002

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9ec20d55e241eaa3d060ccb661425bbc6727d64911c20739ca7cc4fcb7107d6d
MD5 4f5c0d949005edca54b9deeb1caec780
BLAKE2b-256 2d7965b330969c75de915e6ec83ab22795a99ec6fc1e5464c9085c2ed87b66b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5c306d4ddd852b3deca08e6c63a2abc0613f2fbcd63d27a3b50e2f0ead18bcb
MD5 26a094bac09221f734688f5c39accd3a
BLAKE2b-256 c111ec80b0a17ab758c1fb85001ce3ed8e6c3ca1d3f2decc021110210afcb15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1d4314466669ad6df1c1b60b30c6255f5509b3e56002dad75ca65eac7eba848
MD5 21ee1ed7741e4218a703060d30b62e3b
BLAKE2b-256 bc2d01e8be3d5ca7b124b8de041672a9ed837ebfae8fdd613e2c63fd0a41ce20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eedc5e9cded00a5b1b9ee742e789ca11d3e042a5b35e75706a02a3e02c4de77
MD5 157c31b1c6934c0e7cdad7d19c62083c
BLAKE2b-256 14c76b77908ff32a425f4e0ecd39ebd5839a11d9ea3c016611bfbf5995c36d8e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 325955df421d0b10eadeb234edaaff162898b09f13425cdb022db88a35573537
MD5 d1ed4f855c20b610e7216dfd28085af0
BLAKE2b-256 3c87024fa3669b9c05ad6476ff16d960303f6258501bd6516940c70bc5e59f1f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e0f429df16cbddf8c08d2a10a1b0c6b37ba7cdd87825c809e249edea02270dd
MD5 0d58a7942693f3119d33b161d8ed3b00
BLAKE2b-256 b6b100bd30016a192e0e75cea875492a94e5f1610755ad84a852fd4faa833cc8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bb6bb7d5869c9d3060fc4531bcabe9a0d480ea8d0921e50ea0e306ca317f9b8e
MD5 d44c3ffbfbc9dd1b5a779a2e44a43bb4
BLAKE2b-256 53301095e3b3ae7fea7d00f02585c56d8a4dedd1c8eb2470ccff222b20f6af44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9147d3dd4e100d4998565208e211ebe8ec36013f17eded363f233b9a59b9e536
MD5 5d1bb29531244dade0fe60fbfa89cf36
BLAKE2b-256 bc2348800d3f5a5ae340a3cd862e4d9a0996cbc21543ae69bdfb08dd5fbe541c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 347f0e012610f94b502439991136ff2adf9458c30db421c08f1a6e42d817127f
MD5 4e7ee00382c9cce7298801c03ad13f3d
BLAKE2b-256 bc2fbab4059c0709af59b5bc843b393d5d04fb966e0aee77c17f709df9eeba93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bee3266ed15000d598c1b61ae29383942f8370467d82aa8ff731190d24b57b3f
MD5 6c20abc94b414b43fef5ff1af4dca444
BLAKE2b-256 75ecbf12f466913349577308daae2b380e9774c3a3116bf36f36c043dbdb0773

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3dc469c11ec6de5c9d345ce81f6f5d343ea711b563f1ce0876b016bdaec9b424
MD5 cfa64762a6d601d44b90c2cb861a41b7
BLAKE2b-256 81109d2970045703465645205bc1ca6ed270b88f48381d5bbe6111c943b735e2

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e9720c5707b400cacd19fa6bd641c1c0a12a97a51034f972996e61816594f86
MD5 885a6e15ceb49bfbeae25dab3ee9e7f5
BLAKE2b-256 a5239811ad0ca934d36742b211d4af71266065dad028a20c73b9545d93812c67

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 66de0dbdd66e7e2e7209f0e1320f4fe3a428e8d620cbf0dd5867d6a7613ac183
MD5 b4709edcaaba3fb86c00f81599b206a2
BLAKE2b-256 f4f283f0f7ccd8c1d5f9b0371ed69a95d9ccfd4c14bebb9515a7fed558e42061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68ef061a8bad9153d60149b97ec6504030e85c7a0fbcef3e0593a3ab9080ef94
MD5 08702be2c9f487c251914bed2a13e7f2
BLAKE2b-256 52849a18fe045831585b54dafa26a0d80eb8fa39b9786d48b7a12cc9f2ebefbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c76c83d9cc73a9e8ccce3ae41bd6f797314e1b98926cf6d27002f8c93935ada1
MD5 c25621661343359cf37c69e54f3445b5
BLAKE2b-256 1d3cc865525ee54a3ccdb06c85492512b4cb83ac7ef74db4c621e17c27ffe211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4b65a2ab36cbda5dcaa9109e55b8ff22cb532ed04dfe508cf635c75e7ec02e3
MD5 c421480212188bbd607340ac5a3f7a76
BLAKE2b-256 42c8d6e7d7fa1e9047e97bea074d81af2c5ece97cbeed1b7b4703fc89f0bfc13

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68cbe7fbf33bc69127e4a19368a86b13bf2924906521b90970d19da5357bdc0b
MD5 646f19ecc71e4d04ebff5efccbaf6bdb
BLAKE2b-256 832f14d7b91f5a05b193828e37230f5534a3cf871187623f4b1f44ec5c780f45

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0640ef9fa0c7f6514a818d7fc250bbfc3137ec317a92f28346974ce5a890cf6
MD5 b2a800e26ba52a994ded28ffa0cb73ca
BLAKE2b-256 bd9f7a05a5dbc608532e6e233545b61fa5d5f2428e57b5ff41f2dea785e15835

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7251d1732cce35fe63631a1570455c2cd436984f90ee8d9ee726ef4fe054e2a9
MD5 19c5ae31f7add5f4d627078831dc09ce
BLAKE2b-256 31fd7f2e2ad1bf5b198b26da0ee25a446d0b1928ddbcc8d6c02278ab9c3ab62a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b60920928cc35bc3289bdf775cc95cfe3d8299491760dbbbd57dbc803b56b88
MD5 cf8a5ac167555214d3bd2b3fcc619448
BLAKE2b-256 7e12765f13e555ad36be64db3b36c5eea7637b9f8a1aa8fb84e1e98f58ffd7ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 761366b3478e82fd18b0418a998e4bce3c887797eca1712329188a88b49c53d5
MD5 b20cb9c0e34f64f827de6602d0d68ce9
BLAKE2b-256 03468d5c29c4a526bd8fbebd2332ee0e22b8af9189b9743197dd2071b889eda0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c58efa9ca630b877e4efc97565e0c6384f729a8567fcf3bb1260e72ce8b13404
MD5 286f2d614a178e2f192ffcb9e1ad2ff1
BLAKE2b-256 6524b8bd7d0f854ce9a05364243e4d3b0e45b2927da6ffcd3c06ec976a2004c1

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aafae15a32c1e653eff406ed902dcec22e2d031883ca3293ebcefdebf01e0d20
MD5 08e87f954802e030d6b3e428b5295e84
BLAKE2b-256 c9ee39438770547933918eba2d1d3bcefcfb0b7b11ab9d941bc8de9907261bc5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dbe8d31a7de5a01d0c9659c85e840dfecafb0c833b573e7fc5bf69a023e8f80
MD5 e21f25a3e3f14f41a284bb81c99e89f4
BLAKE2b-256 fe50f93249435f196106b2165b6510232c61323787ed14f6ff38bcb8d10cef39

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7dc4e9a8a1d9b33467ed1e55f4f93c898869a14c9c6a2a5860d54f0ce5689436
MD5 90a6fb689db99db531d09d87a8d51694
BLAKE2b-256 76afd792e613061a4299db14b7d23b62f8bd9c12bb7fe4b94d1240d17cc8e5d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10e03fe2a50c53977da92f5d0028b9b5c2b480150e3e39817cc27f58b5ad4dd3
MD5 eb3c0d09567d4ee8fe1e7c74d84a7ca0
BLAKE2b-256 15c78413a342177c2f4be74ae37b937b1cdad94284f12fa6c38b0641a90aca24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a50c4561216383423fd0d4fc448bfde9f22d82d80b74a1d52b867cbb238c9f89
MD5 1925d940d4fa95cd94d8f1736f8b2310
BLAKE2b-256 6b4b4d5069c7eccfcef117f2f43c89e4f55c91e85895772babd2359c226ea1ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ed832a4e967795679e5c860c350ddfdcc5ee35fe19273d1cda9d5604b3c8cea
MD5 dc96c2f3fe8b03c135dba0f206f861dc
BLAKE2b-256 98bdbb710450d682424f052f521da36534c972e12a19f968519dfa19307acc6e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 403672c58579f62b3d470dddeef6be1408cd2d24896e761f6aeef23a7a840b89
MD5 65e5ca13c6a559fe307796cdbabd4275
BLAKE2b-256 96af18c48d5206e7ca51b5a1d93fe8b750ef4631beaf7e3f36d9a6358b5cf447

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c392e48d7931e3611d9081519180c3ba030c761139b331bd03c6b998f1f982a
MD5 9b7ef35e7f5d4d3c0a38f21fe199a1c0
BLAKE2b-256 37821be4fe765ba1a0577fc2bccaee5c174e3ec590aa0e45fd37bee85432c327

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5becce8220efdf788fb90203db09d59ef2cbba7fa5dd6a06b5c7e00c4fb30758
MD5 b0fc1774a95de9c89cf584c8db6ec1a4
BLAKE2b-256 9a8157e1daae8558bc100feca908cca2cdc2f071d47ae11b21099dfe09338e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8a70f67cf7680d62b566310578a6263b47fa8085c791cb96942db7de6fa4a3f
MD5 2c20ea27419dc4305ef7f77276cc45df
BLAKE2b-256 6b6e22ea342c78b73930c7136da799b101f3b063113b696c00f9b9a8f5f587f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e149213f93ea405f342a00a61ec16a569cef312777e7dde3d075847ecdf78513
MD5 db683ca88f9a39bcaca855078b24797b
BLAKE2b-256 6f413fa28b27403f2282fe5a58c8e8b202e84ff51082cd9af03fdc6767387da2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd88b89033d1e0e154ee1f9cb54a12f75d262850420ea9e7d4de3d913e558e71
MD5 12bb46844cee10b77ac6e58223f798f8
BLAKE2b-256 215c66e5f57f8febe677c0ef5b3631bc7de90106c02df6470f85e88448f93c84

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 327adf964aba0da603954a1c706370efa4f0ee7b0015615ed7ae19443384cfe9
MD5 e8fbeeca2463c1c3da6ebe9b71956969
BLAKE2b-256 2f961cc2b42974821e33d94b9f127b08c2f6042ea2f27eace5336ec81c955dd0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caa8e497ac8c4e934699fabba7cbededb792b0759c8783fef5d256f66849ef53
MD5 0e9d1d3985c83654a08f437725d01886
BLAKE2b-256 85dc50c2c82c95d076bb3e86f576b05829a8936b2ee24783b8354a018c472510

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e1f36e5ae95f8ca8f2b9fff9d2bfe6bd0943834b3bcca16f4d1b80f8bd076bcd
MD5 6e9a049ef4687d988147b87e4907d14b
BLAKE2b-256 d3a8f647525ccbc2301eb3f4cbeb0bafc5f60cb1e5be4acaad556d001cad7ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 874cfeebe0a6fa05cb6f519aaccedd249b6a661fa7bf532cedceeb17a8cc58c0
MD5 1e801207024042f4ec821ae03d92cc4a
BLAKE2b-256 c0d8957611e8ef3596fa381b99e7c3f40ead9f31230c5b04899a40771b912dde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad04f315f758f0f71ba1c7fa093437283600c616833389a0f0c695324861e0c1
MD5 e430b830a6005669e3d2d2fe4479653d
BLAKE2b-256 d8ca88fd96218e5e529cf67ef97e55c33f01601483d4f1cec744831ff31b9f94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b22a619d1cefbd809cff7d855cb1ef956c862b3ec2bf969eb7a31a0a5cd3643
MD5 c1bacaa07f6c484e032cc23a3ebb838c
BLAKE2b-256 a97b9590cfe76cd0b8d5c9dd0eea73b1f73b4539f36ef920213fbb34fe36139e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 219869e6386c2018a0133afb847336ae54087c9d83d0489f9f192b42210b0cf4
MD5 961bca89a8848324e4e59b5c1f450c2d
BLAKE2b-256 82db550023fa9c67ead8019c0a9eafe5f2d5a0869029fb2d6c5226e9b2d43241

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0de40f6bb60f30f1be9e7f5d4faa56e361a7df9a137a7cb109a122929ef3b1b2
MD5 52cc387e3b3a2fe3b2cbfc62fc918c8f
BLAKE2b-256 4ab7fab90e515a7ffe7aafce6afe80026f03c8b547fa22fd1cc9a738e115830d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Supported by

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