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.1.1.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

turbohtml-1.1.1-cp315-cp315t-win_amd64.whl (939.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-1.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp315-cp315t-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.1.1-cp315-cp315-win_amd64.whl (932.0 kB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-1.1.1-cp315-cp315-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp315-cp315-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp315-cp315-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.1.1-cp314-cp314t-win_amd64.whl (938.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.1.1-cp314-cp314-win_amd64.whl (932.2 kB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-1.1.1-cp313-cp313-win_amd64.whl (908.5 kB view details)

Uploaded CPython 3.13Windows x86-64

turbohtml-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-1.1.1-cp312-cp312-win_amd64.whl (908.3 kB view details)

Uploaded CPython 3.12Windows x86-64

turbohtml-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

turbohtml-1.1.1-cp311-cp311-win_amd64.whl (906.4 kB view details)

Uploaded CPython 3.11Windows x86-64

turbohtml-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

turbohtml-1.1.1-cp310-cp310-win_amd64.whl (906.9 kB view details)

Uploaded CPython 3.10Windows x86-64

turbohtml-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

turbohtml-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

turbohtml-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.1.tar.gz
Algorithm Hash digest
SHA256 ee66fb21df072a73ca1df95ac3cbdb1c9f42f3e483e7ef214ce00260d5a63fae
MD5 808e913feda3232ff62322ba6e472ebf
BLAKE2b-256 710c48862319db15139213ae550af11f6af8145d6d72e10b28b3efc0b8f951ae

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 939.3 kB
  • 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.1.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 4b96b9b22a408fb7808a0daeada57da9037bb41a9b7ad27a826dec1a93c1c507
MD5 1a78cb6829672c73bb82c319484c8b9f
BLAKE2b-256 81ec258a4c7cd0fe37f0e44ed5259e9ade75a0891fdeda9b3058ba89120982ae

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dce1a247b640cd63bd42dd4c8ea655ada4257cc134eca238cbeaffa28bf45cc7
MD5 34f2d1499a5d7d382ccec6262ded1df2
BLAKE2b-256 5e2153a39fdf512d79e5044b4c50dc65addcb04b8d0d459d23fe37133d5e0227

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc6547fe46c1363edaa38b1626278ad9096087be3d8154078431efa790c2d5c2
MD5 c0878a983bc309a7bfe2f395abe85b98
BLAKE2b-256 5a50b7b0c2a7ab9a6fe31487b47dfbcbb09de075efb44dd4f73e0d7401f47e5c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c441a3d8376745088c59bbbe46c4263e9e7ef0f336b68ac5ac3d6fe678bde652
MD5 8346078ab4563ccd593a517b73ae686d
BLAKE2b-256 33c9ca56e7d31c5493b6a6a0675b813058b8cf12a82be6f1b6af503a529b6d03

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2dbc80610c301cec1735429c37831cd0d21b443e57215eb460f63b09d385ac7
MD5 bf1330f5b38d7ca83e0de77b49b038bc
BLAKE2b-256 c510dfdca59e28809e578468aadb9415e694c53628ab6d53adb13b2f28c37ae0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cc54077b522d9ebd5801f5cd9caea38f0e366ee6edc6b01ead6bbe83e179b5e
MD5 a6bbcb8463501eb1e590fb6bcc8d4623
BLAKE2b-256 61ffae0b3fb11db072527e751a593139b22040e285195830d145f705b960ca55

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 932.0 kB
  • 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.1.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 aeea6b4454ccfdd45dac0bea99d01cfbf800571e5c5f53576f81d7d3ab3d863a
MD5 6e477a198b877317ab071be15a9ed853
BLAKE2b-256 a907e82c02b7001cced4772cd1bc86c84b09292e12a1df965ceeecf83dbf9c17

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2de6446095eaf00c198e296275edada72c46aafb8f288b17845c87fde6cdb87
MD5 2ed55c28aa5402da9affe76431b6f252
BLAKE2b-256 2abc1172fb496a1802c027548bc040d330d23c684a6d058e8108dc11877de5d1

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 baa1aa62f109560ef6e3fb174d53aeade2ec742410fbbb4b71d1938b8ae74ddd
MD5 740290f179e69f34a1052ae0b76d754d
BLAKE2b-256 b1b68e88aa2df13070a7aeede8552adb71084fb3a4ec2bf26404ddb97b0019db

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 785716ae9c7c86a7a0abefa51e93c75929edfa3da1c64da16df790677814a41c
MD5 4f047e19cd59992107411df76c9f79ed
BLAKE2b-256 190bdc3e655b22275fc0b3e1cb11330c86b1c63e24cde80b93acb68311514e10

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db9e23d017fba7f35eadb473a6d32ff93f63ee8a4b76a61fe8838c00b0a654ab
MD5 ad4882a38ddc57b4d2faacfbfca39755
BLAKE2b-256 4b845e987dbf62c9c6c99d2c98c6bde23b2bdd93a9fb9d01560aa7b6d16c7ed0

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 802e78af5941548c5510332242a0ba571e147de0b99a7dc0e2524c71652b3579
MD5 fc29dc996d1e20bc15ef2fb74820d697
BLAKE2b-256 bcbf9661017ea76a3fb2db3d9da2a2da5ebd365bf226a183e3ad25c0720aaf95

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 938.9 kB
  • 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.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 818252d562250604bebf47f81f61b350b23b84ca02db52df470508246f19496a
MD5 b4f69b0f4831c9ae877e0f9d4511e0d1
BLAKE2b-256 010c3755d81e03abd9e9b2f8f88dfd7b5dc288af8c0a0c25467ad3bfc49cb4f3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2e32f576dfa9c0aba7a21e5691c6c2dba4dc3dc5969b9c16c3a765c0f71f9a4
MD5 f6b66b4c4224e0deb9678650ee23f850
BLAKE2b-256 23252c20666e88e26d6a32bba3467e891ddbd85c97a3452d1df5cefc5cd3cd9f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a64c1964142dcfabe9cb680c7d410c7c2b6691d49ce70922818aeca682b8a90
MD5 f0128153a7020a5d083d736bf12c0698
BLAKE2b-256 4d9436ec5160df14da4fd389a0302d2157bdaab21fdb6138f5f266931a0d7cd9

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abe466c2c2fab03674c9b0fb06cf8fb715390191702c4297f393f417fe44ea54
MD5 aeb59a49a518045999a954fdbaa5fb8c
BLAKE2b-256 553b47298f27bc8d95f3712ad30dce97c3dd184e492ed3b9a36f34cb4119cc88

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d80bc4d8e1e1549f351daf16b60cae72447822962259ec290ecd68b3be3e4c3
MD5 81276148ebc5b5dbbb6d53fc1ea7fef9
BLAKE2b-256 1073bfc0c9694da84d3a86373e895a47aa43aca963adccb51110e801260be128

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 015a218f5cc5648c5f726a6a7e846e67f67de341b92927ef18dd9416dabdc5e0
MD5 4bd8018d8f337dc7ac009001a98aa5ef
BLAKE2b-256 b427f6aa80fd7d9ebb667beaa7c75ceec0263da9698e550fe9cb3abc3cb07161

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 932.2 kB
  • 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.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fa76bf7d6bed588b7937331c34865561b3567b4cf72a790a30d625308880f764
MD5 3285f7ee0e1b03e6c841924f3287e570
BLAKE2b-256 5405263c03068aa02a9344405acdb8546373ce7080b0d87587d76b2a62dca643

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a7f84cfd44209678148015021ac4acb1ff6dff0bfa869b33bb2a24c1c309130
MD5 89e71eb0a014c699ecc0e6d24dba172f
BLAKE2b-256 7046e857a0b5a39e4c3f45e46df688dcf71c083be4ae78416dfdfb35ca73d3b5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78720a98ed1c97eca7663193cf7c59feaa1ad0c24995cf7677e359f4f6e51ab8
MD5 101d6155cd45ba0e32d93442789f7aa4
BLAKE2b-256 2f28c743baa49f4ae951ff7185c7e42b2ab5ed36cd595bed413d813e77f619b7

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f17c9025b2253b3c3d8764d8a0f5b1453b9351c18cf98126e5f1ba47b0aff467
MD5 1910ebdf3d0053dcc47a98b6d6c8df37
BLAKE2b-256 68c9add66911f53b06edf05ed6a7628cd0143b3fe8ee0366aa1973d5eeaffc7b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df7ffb434af9028027d74024084acb2c3ae45db4c644cd16817c20bf33f968fe
MD5 242cbcb670b3643ea73d84ab0f02d6b5
BLAKE2b-256 2922111891dad96fc03dadbe7b51f3fbdb462a1f2c6c405d7a7af32e8bf29144

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 926769bdee38d0070672cce31128ab98d44c035564fd233fe498d0f849a80963
MD5 1b07510ad0c732e7c3a3dabf8989eb1b
BLAKE2b-256 675baf15998eb2de46ca0e3ae7a7c8751b06b954e630ae778ec665714549c6f7

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 908.5 kB
  • 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.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ef0c1c29d0ced07b9036c09cb3cde6a63b38aa36575991c6ffc42762e968ae8
MD5 dcfe701989e5b07fbba23ce67a1ce2f3
BLAKE2b-256 806777d72e2550359adb526e69e97cc7332a19f83480fb1b597360266f254cfa

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c63af4539201c884f75de4e71a97b141a98354175f5981f5f60385cf95a2fb92
MD5 92ae9d616dc8657c5061966511ea3cab
BLAKE2b-256 952c7624884164f8e77fd7028c5956f4820e9bbf5c18b6ff52b0394cd4479709

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82def9a8add972bda24dd16a7f5ef1a53c5a1b1904f6af79586780f24f51d42d
MD5 896b0f67539044903433e30c16c679de
BLAKE2b-256 e634271f54f75b3327518250f9b2ccc3358636d858110a7a5a70af4f426f7d13

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca61431ebe31281732837c08f573f616dc761563b5865e1b7fbe3293e9104144
MD5 b7cc71c156f24b291f2d68d3c84db3a7
BLAKE2b-256 d62063f12b00ad3fef18534c669e64bfc8b66715b63f89ad6da7cf97d1adc553

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f44592d035a6e20551542372a6d6baa04fe19f48f3807c333f61ad599423e29f
MD5 936bab1919a65f747bb7efb84ecf5089
BLAKE2b-256 44650b0aa1426ba7d19048a23324b3d612ec461b4448012f6174e02407498b62

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a26aeec9443bcb60c1d70b4ffe0d8e3bf0352640c6d962ed90fcad9074a28345
MD5 ded107fc063d4ca93f225494a52ba7bb
BLAKE2b-256 7ac83dc801fb802940c9bab662dd14c6f7d67b8cc59c2187e672438004e341ab

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 908.3 kB
  • 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.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c0732757f4f978dcc039af9a8cd2656f3c4a4cb42a54e171dc6b211520741595
MD5 4c32dee742fe94526aa11cac069310da
BLAKE2b-256 58ab2645ca12e177d615d08aee49982541074f0dc8c320565bf0e84003f53ccd

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da0e483963dfab11d648f5a095fbf2bff4997030435451d6b2627e9de69d366f
MD5 00f569430aebccbd6c6dae5e978c94c4
BLAKE2b-256 746fc94ea309c3f7811baf9c59401dbd0856a4f1469483517c52ace977c975bb

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53dfb7fcdcc5ce3c6d013827ec4a10284aa612871e31e05c3d2a92f2d4b38ce6
MD5 8897d165e2f84a3f8d5fceaef7a7431a
BLAKE2b-256 de867d3aba479e06a9458edb8d2a70d5894b3f15793b310bcd3f247b29155576

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d05c09334099ed3f6216c9a108de97de06fea1cd7c04deb92450777bee3d9512
MD5 2aa3c35ea97af301e659f68eef40468a
BLAKE2b-256 1cf24fb8b288d8058e2922827b06ad0f53d6bc1cb655ebb23ec95af76fac59f3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c117101377a9e28e6789aa439c33429707aa334779d8eae4b528f5574978bc7
MD5 4e65c54772038fca32a59bab1f19139f
BLAKE2b-256 086b32977c904d689eaab268bf597a4ec9f908f279e6033c7f5fa4f84884ae78

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 deb84fb06b29c1ebfdaa2d8938a13dce751bd67b71c0d9de457a0fef0c591603
MD5 f72a7a86c2ccbd2ef103eb21ef42c4d4
BLAKE2b-256 8a2eae8185a870531e80fe7f03bcbabc4dd5555508156abcb9bced3280d26b67

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 906.4 kB
  • 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.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab33fdfa504bb65f0fd1bf1f00d60f1f10f70f15358ccc081b8dd5b40603e390
MD5 ec04fe61740181496eade5866e5a347b
BLAKE2b-256 39c54b2dff1784224cbf3f9ee8b484bb14dc61a1395b6815cf7b8114b3eecafa

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbf20e9e4d3d9d0222f1873d745d31357dce5d5ad1bb527752ffc0f99a1c8138
MD5 f133a9828ea8d698bc658a76e3808322
BLAKE2b-256 89fec5fd70993ad4f6e3d523323fc10bc46ed8bafa7f6285cddac6f024a6fa0c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bdf3eecdac6e6d39e7965a19ae161667a7c2ddd9bcc580a134b93f0b391a7cf
MD5 47cf43072a4e8e0aa136ac273f2144bc
BLAKE2b-256 3ce600639ca1236c4fd30c7002195a9d1123ebf32f3fdf8ec167225eed25d720

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 836d1225e79686f34a81a0f7cacbc05a7acd6d82000f388f5ea14d8e99274d66
MD5 31c65bc518452d2efcbf4e8e5d004e75
BLAKE2b-256 bb4be61a388a78eab781f0eab39cae58295a0128768b180297d6691c65e2612a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84627f4a8470085c872e1a14438cd3983f7be3e3b637c6b15bfcb1673c7f00e7
MD5 259eda409039254b9735010d4770582d
BLAKE2b-256 cb3d82724833dc4b4e6ed06738cebe1053909a575d9b983b4cb877a8bd1e724c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be5ac4ef840b34c451c048d50ecb5ccca5ff331980075c1986414d70be29436f
MD5 c17f0601a2e9fadc28ccf4dbfd0c376d
BLAKE2b-256 a79182546ccc8e1e27282f74022f57c54ae5cb2ea0978aad703459e2705f70eb

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 906.9 kB
  • 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.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6b7bd80558dacd99e25e8cdc4c78ce51bbff10324b552588bd63d3fc4a9de42
MD5 250099e37245e483ad1e77cf81b61e02
BLAKE2b-256 9ad19104324d59d2e1bb8b999a0458add7996eeee21888c1ed3759edf603523e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 811cbdf096662bb91eb08687a7f40f81c82c9d51d129d02478eb58eb94027cb4
MD5 350825189e42d7b86b45c26184dbffc6
BLAKE2b-256 68847b54eb4f9ea896a999eb3bd106a6c81b7a59c0034c58148aff6583a46dfa

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9e319b4298d6ed076d026e226deeb3379ad95dfbc3be7c32afa6495d3ece326
MD5 a7f75f378d4e2f4b4941673ba99f601b
BLAKE2b-256 4a48745ed568fdd4f534418a3fb470f3e9c3530d8120bdef73b90f32acd0e4fe

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 338229299c8934aead321f1d8611ce82ebb7174b6dad15d971e33acda10f7682
MD5 73788ca7ea38d5ef0f95db244b4a36cd
BLAKE2b-256 2e4bb59e2861ee07b2edc7374244ed77a2f254f1038b6692026f93a4b3ae8f1c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bef640349f8b20d7792d6d5d44e3fdfb19071c1881afea234fd4aa7ab3629f7c
MD5 091e92dcc3f9930e12a327d686cfd609
BLAKE2b-256 8d892cdcaa427b7b33fb8b0804492c7b56caff05af5b53d78dcb3ae89bfff1bf

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de24117fb17aba471b36b58d71f632a8e1e7087fa10f117b78ca6cf232c5ae7b
MD5 3b027e45beb70765c06f064d1584ce02
BLAKE2b-256 5df75ec98bbdc40cba8f26510ca8b6e6561f7318f25a2343ece44987abb3263f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Supported by

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