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.3.1.tar.gz (2.6 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.3.1-pp311-pypy311_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

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

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

turbohtml-1.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-1.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

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

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

turbohtml-1.3.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

turbohtml-1.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-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.3.1-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-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.3.1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-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.3.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-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.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-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.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.3.1-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.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.3 MB view details)

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

turbohtml-1.3.1-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.3.1.tar.gz.

File metadata

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

File hashes

Hashes for turbohtml-1.3.1.tar.gz
Algorithm Hash digest
SHA256 a0449cea405a0b2583220f7e43f7907d7508dfcc7e7d7b1aa734f3210322e646
MD5 187584b0fda361990494dd69890f1155
BLAKE2b-256 fee51ed5be90518689a1374c6d6f811e96881d9f587ead60d82e7832c011e36e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56a009ecfc8625e4a3f3e451f4642ef9aa10493011af04646707ea236324aaa2
MD5 697bbe652d6ea1f2d1461ceedc5ad331
BLAKE2b-256 fc2fe50c41c2a3aa01452316219982f2b7626146b763f8a8f698cda6a6b1b362

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.3.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d14171a80299d61d4c842a1b529fdb3d7c7053fca11af8d6ab55c838fa6e709d
MD5 27f3f27a2893dda8e8c6034b5e4f053d
BLAKE2b-256 46574060bc65e8f2dd02d520d23c6d43670c005067670937b5851978ce23f9bc

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd797d76fbcda98c297822b146b95dbaee88bec3d1ebca6744bc955acaef41a5
MD5 9f534e52239b4d93a7269d3e3c9e6d25
BLAKE2b-256 6caf9675da42eb3cdf798abd376740a061be2b1c916655580c1325150c404844

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9858c149481e40bb00c546052ac1f0db83d4244ec662fc6672d549ce31cadf7
MD5 7a88d7a4397da7c97179bae75c978e0f
BLAKE2b-256 daa256ba2f6408a50f6901587d25399836424ff0f485a6e611683ba5c89083f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.3.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 76589ffa2ef658fc8ddc873cb0d2ec64cf70f8e304be0f9a415959ab888c6f4b
MD5 cb17887ca4daadf099eb200555de330d
BLAKE2b-256 e05bf6274788b54fd9d3892595007353b4d652658adc748d1be6b57e0922557b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.3.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e92498d61477f6647d9c20e9f32a62e5c392d85e9eac70795a40c8d46625912
MD5 50b4d54d527b6f453393c21b5ac01b3a
BLAKE2b-256 c7672096f63d971e2ee01d2dbc8265080bd1ff680f8c1a67416f6049a832f986

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 96f3de7bd9a70dbcaad64f327cc1b9409bba9088c806d1a570a36803a736a30f
MD5 13e4549e5f62b6ef817f9969f03b2799
BLAKE2b-256 77b9c40064aa288f33433d1d83cc99b26c317b2b5ebefadc3752b075253afb38

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6c2d67e7fbd4f8436d482653b55546a46ad23e945ebad11351bad6cbfc66d74
MD5 8259a22f2b22767b73efcf5176111cae
BLAKE2b-256 017b18e855ce57634d0da6b4e92068fe4f882834b6b9193ad94f2cf972d91cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b638f8a0e3ba0c88f2059b864c4ee696455789409860fc091ec7059145d9c43c
MD5 0198b43788d1f2ef137f048fec572625
BLAKE2b-256 ce2693ea32df6525aeeb9280d227a52f000ae1059b7444b7bfc6094435b808f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f365bc30292613ab45c89fd029bc191508952c34813c940f3b8bf28256a730b4
MD5 952c4aaf4af621b1059d827eb812a34a
BLAKE2b-256 6c1fcee4ad622e6453b4d35b86702ea069032b83e885569768e16e44e790ab1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63a30cd6b0854b74d03aa83740a582f512d93534e655d2c6346c9eebed29ec9b
MD5 b711712c26ddab75370d0d8ce73c5b4f
BLAKE2b-256 49ce4514dca8965978771a56839297b37a64a4ffd3ed68a577c22a5ebe534fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 611597f9c0c4b5ba143448a7a5a265ebe72763d3438f91f002ff3ddb37c41066
MD5 4607de10a8e5aa9c14dda93b3f3ae7ff
BLAKE2b-256 b4cfe56d8510e618ec6c7034dfba2c96753f009e335ff1753a0dd0eb2911f8b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 558f1f09e83e1d9b9c0c350160f138a9d6d6541b1560187a02eecd228526f9d2
MD5 286b568f0be950295e943250080858da
BLAKE2b-256 fb26613d44073a51220c68cb9434e428acf0f009a6dab561fd54205e29bbe5c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91106f95023a647fb7cce05f41a25cba1b0ae403cb0771a1630716d1d232f906
MD5 03cc4859f5f890d3d2a8a109fb303151
BLAKE2b-256 bee082a5a1ae4662c684cf1a8509d913f4e99dbda2c8e75afc615959005cf0ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 cd2f874445939269af9d2b71f09e4cc0a86a24d7719296581cec14f08d4e7ddd
MD5 992c3c0ba7a012849a511d67fe43fb4d
BLAKE2b-256 d9306dafcea7e64af36d6e3a8ebf3793591eb3be4d6ad912a0fcf351b0c98938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a758d7fcab09230802006fbc55d767c387c205f41e25bc19d6971eb73b3682d
MD5 3bf35fa76fd3c36fb7935693410d497a
BLAKE2b-256 71b6d28a24b7325eef026b8f42a6a4998230029a5f2ca3136263aaf1bfaf91af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3b6b1a71c08c1318e4938f51790dadd390c5960c7c7951fa0058e5bcc90c5d8
MD5 b040de5fbd303170d2f606f725e7bbdd
BLAKE2b-256 c734523fa4568e113478d8b137badfd1bd82121b5069eda1845d366b03ec72de

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bc86de78e57860b75a3fab6ef79307434f40dc16069c1abec99684c7e95554a
MD5 7942998bc868b832aa4820be48eb90e7
BLAKE2b-256 383d2765c22f37fac2e6d2ef5b0d15d8c2f933c6542c69d2a1f28d9c38f74154

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01012e99e14b305ab17c3a894c500df7dd3ea882bb4d0c374af473f28adb416c
MD5 3b019cf54c2190944af11d5d3f8c96c2
BLAKE2b-256 74b4f034a2be949f76907f1f858c60f4d97cea355519cac5237526a1e35af8ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9b914be1a66e46da382456ed76701a8d68e16977afbb5c5d51398ffc0c361ec
MD5 1f61afb34323a85992627ff236dae7f9
BLAKE2b-256 30ad7bef17f2cb83308c5495d5f7fddb02c8009d7babfb61c426b3e9b74e4c59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a85980da3d73819a826e521cfade41f8465e43bb71d7d2921a6f668f7790dc1c
MD5 aff1574e4cff6470a52031e00b849424
BLAKE2b-256 3d5328b27c54770868080320d9ea64bdc290299f086b3ac4b3e7517f51cefd51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f2c4ecb5ec166a3e7442b2e6b3042fce79f477549ad4a304f4694c589a321aa
MD5 67646dabcdc800368db6cb72285ec26d
BLAKE2b-256 56c258b980e76790def401c8dc36387ff5a86593154bbfa74ce0c4830986fb5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7361ce263a4d3939c589605caf02baad432e591491b1b0ddaab8d568199863d
MD5 e0a6983e1e1d6543d110aaddc9929133
BLAKE2b-256 f5bef3a5c0729dabd79675d483ea1e105323a2b59a7fe1137600803608c68dbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfc9683014dd6c7489c7b35e502862c4a7a15fc6411c4c1f7e110b92d65e6e30
MD5 2ed895e534ab3044cd137cc2a2c8e071
BLAKE2b-256 dd71f1553d477243ce3071bcd107a18392b1d2fd4bbeee064cbd2b87e4a7d716

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57b12d6c1643a85a51989865a6e9484ca5807c8884822fad75111b1f48c486d1
MD5 1907d8641fdb4e42dcb9d78d275fa181
BLAKE2b-256 d1aff50c741d66b8a7d72897f6a05b95403102fa041911e4a83fab038be68548

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8545f43f84dd161936e052533aee732b6de4b33b45b00463673d68a5b8ce61b2
MD5 23d76e88c7b2df390aabce462b8923e1
BLAKE2b-256 40d96958a6496618752595b6d8ba380ee54e3982b452027a8f7988eea509665b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a3282013e062db56e0d9007d59522c0d333d24acd6a962e60d36d1b0636f03e
MD5 459a675284ef62f71baf55b33fea78b3
BLAKE2b-256 486473d38fff553a94a9b15f8186426603acb33dad0d60efa2764d21bfe78b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 830ce5337a5bb369d4f8555331726d546ae1ec777445e9c576fceedbb11e5207
MD5 38b51d64056573bcd40d89ab6a8bca97
BLAKE2b-256 76a7d028b50b1f93961550b169625916a9e7a98b1b3731b1218e4fb083c5f5a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d584cc3844725b4c845d16bcca8427c96cdb1f9142931bdd0378932af92e9b68
MD5 ab77e927a23e08ead3b45dd83bf3e24f
BLAKE2b-256 deefff28ca0d9bc43b1a1bc58f0eb4a0d43a89d8ce1da066f18d241ea665b418

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 820e2c7d200366ae805768bcf073d6c5f3c04cdedeaf535eb0ed0de7c30add37
MD5 3c63fdb7bb303a82a321b6598f22cafc
BLAKE2b-256 80e5b8854923e55af4de5de911a2c29ccebd693d74677ba2f1ab1481cc31885b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72d95ddf02377a0a171e5ef8413b245d7e1a5fddcd1ff09fe0eb0382acc2a09f
MD5 1298574097e358e69b6a595786bfd5e8
BLAKE2b-256 39e42ac1adbe67ba20bdf188839ce687df89158a595ae7cb6fa28173331ca926

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de3921305ea44f298d6ab940d02d387af7dc636b7b0b672090a27169a906c726
MD5 baa449e1898cd052ed4dee97a88be52d
BLAKE2b-256 f11d3b02464dc164a38f21dedb8b0e64f514f07bd7d0a8de4f36f9ff0a951323

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02c772e8b4ed3b4fa6a0d220f4c1b79193ad85c8a1c43b5efe9a8d15e6ce9083
MD5 738a85572dee7225d0d103deb16d97fc
BLAKE2b-256 cc5ba05d99a74fc8c4c14fe1f0116e8bd248155a0efef8a9d31e4712d48727b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb4653c0276fbdd71a6be6b6c3b42195ddc82efd910e819d1b324e0b2ea89939
MD5 37260ec0d16549e928bab773e725fdbe
BLAKE2b-256 7bc847c6200bb356ddec0e43563e3f7b81ec2da3979298df648a1e18e9bc9868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d76f6d8d7fb01a23e1a69067104391057ab6d7688142f78d3b8b2c798633bc6
MD5 1f662776e5648d05e2fb2124432d7d40
BLAKE2b-256 7e4d675048d294ca15328eb721f1eadfd92c6bc7c3fbcc0b431182bf8e05f969

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 949d5c1556914e74f87b23cad3979286f9731a5cf5ca28445429009de7311909
MD5 212b9e6dd0d1b2247ed2efdbd26bc2e7
BLAKE2b-256 5d9964d2ed3ee5f84b65dffbd0f14044f9eeeff03e3ca80540b421da13ab29a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e3d425813e0e7c1e2abd7d79173f9b52bc8440f98a3dd0a1cfb36a257388399
MD5 5526d5a47d1fb4703275646e2cd31511
BLAKE2b-256 51cbde4d76fb41573b91d406f787a580d2953ced85a7e49b070912426113dacc

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc5582a314e34e23f154d5995222a2a2647b45718c6689fbd5863618d532e636
MD5 7ad206ebf006df9fc607cfa57213840d
BLAKE2b-256 13c865d1b1c3b7e3d4113d3979f55f01b94bcaf964f6cb2240ca755c6ef20ba9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6269d36e0ba06c702c4f4df6a2057331ef050784009f2dc9aecc12da9eef248e
MD5 6991ca307c4b5299d5668134827900b6
BLAKE2b-256 98db2a1e42b4cb4344865d2e930bab67cfc60efd06c52a901057fc2ec2c5b1dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ca7be68b69295aac6ea42dd069bff38559b3594bbf3b63a84dee51d318a7fa0
MD5 61aa9f127e7c4bf1e689301013955567
BLAKE2b-256 1b7d58586b71f2ebb525d1a3435d8ee3202ec367ea28b943446d72358f02cbec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6e64dfb51984d60f8f6b6808939b3a2b4293c9a59374623d23acba543ecfe13
MD5 3cb2bbc9bc994c743d945e7a2cebdf6e
BLAKE2b-256 78dd08771b92ff088c46f08ec6e3a8a95c536e37d87c997eaec873a991b0719a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b15d120ffb8ba581bdf4c6c9c923e19a6be72b049059dfeb0eb1c8ca1a108c37
MD5 3a9267cb2a92ebf079aa8fb3e29175dc
BLAKE2b-256 cb5a2e81222f36579d10d7ca2aa8be6e7d1e3bdc059945f4345aed2f5ccbb534

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74912ebf3dba8d3474dd0706bc6b6e89885354f5763137f08033037f2a179969
MD5 11652658e1df1bc0f96c127274b7b761
BLAKE2b-256 27750cecae6c3c2fd27ee39f1a2349e88e00354853904d0a08967dd4c595ee93

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6c9d2dd23f8124f2afac1f6fd0ec36d284658bd74621c2516fc098b425e0690
MD5 1d8a668395b8097cea0e96284437f2b3
BLAKE2b-256 a71432b2422d644d9bdfefd8a27c00eaa8ae766b261717b080f5ff83faa79ca0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c1f0c573051b2ede840415fbad920b5169035ff7f07eea50d2424e937a8e5bb1
MD5 a4d62a47a21baa942ca9193f1b32fc9d
BLAKE2b-256 011eb40b15814b3ef4ea0c6a6272207ac92b200f9e5b131f88408a793c996513

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b09f9e920a19d984abf737497440558b09adbc2db3c7a005903bbcbb548e29b
MD5 48a15357fbccd88eeceabf33d2df82b4
BLAKE2b-256 7b0268540ddc1673dc8075fa58df1454955d47ca3e90271b95dc0273486a3e44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13add4a32f3109dbb31328a5ce8a44f4a173a526f4c7cce61089a8aadf7df758
MD5 ea70df305a45c85166fadd1ad8a13bd7
BLAKE2b-256 46e2d76fceb3627b5f52064008c0088765c5a4486ebd02699f1fa3140565eced

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e9d648a5f36bc6929432d85db7c6fb0b830b932b8cd7d00ed62290a69c5470e
MD5 d26e6ee656d184926bc892d3fb540e6e
BLAKE2b-256 d7a7af4cf6326bcb86d9d7619ff7abd1be9fb9fba595d9aa876bdb77812f3628

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78cf28ba139ed219823bfcfa4ddf233278cf71ce9d5aa4b9a1cb0f02a95ae35d
MD5 812999ba9c0674be49ad7fd172cebccf
BLAKE2b-256 bb48f768b910269192644737b86aa2b136a06d2af6000bc34c7b86e8d26e8252

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53a0ae5b3f04e16a902b30bab2ec002c37541f47f25d2e122487d13e850ed981
MD5 d47dc5e09fc089a651dacc5da1d4a0f1
BLAKE2b-256 544fdd526103f8a9f5d9c7831a76c75a448bc5ca29cf0e8b270a38d23c328a3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.3.1-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.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4999f8a184f2df8d088365559060a311823bba20011e29384297942f6f66b167
MD5 773f71e19325a8bcefdf7dbc087e0373
BLAKE2b-256 3058f96348dfd4cca32f8d0c8643785b786f848f996e3751f3790612042135d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8218f1fbe1ce70151a28d276c731798aafc01bb8462b3b5af77b6f96d733240b
MD5 b6c35cac78831314c7387641e975dfda
BLAKE2b-256 b227d5683c5cb8f79a9510877bdc754c34a82877e145b0943df7e3fb0f920cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a360a4f65024f54b65d5391980a6686335e5316ecfeda1469767cf57e071012
MD5 6b4e9eedf90bad2dbd7f6bcc8e3d0d63
BLAKE2b-256 e718556a2895bdc73076cb1c0b5f160bff1613723874d4652d5b92aa1b133680

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.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.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db9d2947b6467ed738543b0c644a866e95a5280f89263d51714b7f49f6fc0f3c
MD5 c2e7231f4dfef31bd6cfda901f849e61
BLAKE2b-256 5900008e567c218fa99ae80e41dbfb55ab99e805057d1c60a9a28352231502a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff228f1496616b9bcb72bc75f3703805d7d02c2cd07ac8aa7f611fd7f7bbbf41
MD5 e323e0288e8bbc43600d38b851534ea1
BLAKE2b-256 1d59d62e9d39a0731f34091aa917d50deec85e95affa66d6c3558a1bab30d5cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f669e9bfd5955def8368aea6809277ae01d4e10ebbcc18481d4b8dbeb6e9bd5f
MD5 b5301eac94be81f48bb8f781d491a0a4
BLAKE2b-256 836d0a41db49fd846247cc9b1721d11fbc9b6e84d619fff2bc302256deab3159

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.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