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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

turbohtml-1.3.0-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.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

turbohtml-1.3.0-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.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

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

turbohtml-1.3.0-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.0-cp315-cp315t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

turbohtml-1.3.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

turbohtml-1.3.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: turbohtml-1.3.0.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.0.tar.gz
Algorithm Hash digest
SHA256 3fe55bb0ea55a54ae60560ff0d5f1283dd1e5f3d6d1deeda546b36dbef03d5a8
MD5 630d4f1ebfeb57f852996e3f4daa367d
BLAKE2b-256 7551d905001ef5a4e7079ab3a88019cfe80cad7ff083f5f38912e7645e4c1ca7

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.3.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 532f70803b17e6f36b6355f2d28134673259b542815a5f96f9ef95cfd9c4b873
MD5 7b7c62e5b78fead78372f00415d05644
BLAKE2b-256 3d07f1ca921ac9b06f1d19f8db2da57abd36cd0a862a0d037c1932d3d1518e17

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.3.0-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.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 857d0799ace9f934bbd3b5998bae2c59fea8149091a2478ac761de48b8a027d6
MD5 68a7ad6c31b45effa15964637aef63c7
BLAKE2b-256 75be2ea841252cc61c8ef72368d1b4373d083cffed21dc14df2fe226953969a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.0-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.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8afe27c1c92e8070b69143475baa3b20a22903c8734164111c32433b5f2d702
MD5 997720f45202f0c5607d72e82761e020
BLAKE2b-256 0510c7dd132d19c6b8007f47ca23589a5293c123eebcb2d6f48c1f96533a8aef

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe02e2deadef37d1f919f76a7ac637a03eb5e18b5a3d3c16b61552b645037371
MD5 7978ab37b19665f33299e4df2a48ab9c
BLAKE2b-256 c06dea51c3c2341acadfc262dc06b4e193fead1dbe251e88e9cf87794bf12948

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 82af5e414f34fd1676cc6ba6ff62ce7d1b4bd3c94edcffb2cca147ff79d9aa07
MD5 d0823638f01fb5b6760c8349e677dfc9
BLAKE2b-256 f021a0c1a25ef78273a208e348b4dea074ecd331d12ca2921822c2430fa3954c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

Details for the file turbohtml-1.3.0-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.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8074ab332af415b6d4ce84417ea7ecf8adb53a47b9308eef45f8797ebf2691e3
MD5 635881a2961f3cf8a81777fe7b9ed73e
BLAKE2b-256 8fc4923d3d31d9cb3b62ffb0991f4b7a06409258f4a3e41970dac2ea71e44928

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.0-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.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b85be25c2f82036f9e16fd288ac276246fe8cb119331bbeb0297b4a2d997dc84
MD5 2b504f39ae72cb4a843877704020753d
BLAKE2b-256 016098c1459ede8460e4bdbb2a668048b18609365eb5a8264e6581ee404f2779

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.3.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for turbohtml-1.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34f7507c346145b1be2067ca0f7732c9511b957b27789922d81765d6bdc32aac
MD5 cf253a7a109b4ea7c32c928ec6c09b16
BLAKE2b-256 b73dc698b0bfb78c7ebfd76902ee1b8a8c9d8acb8038a510746701abe77fb713

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 6cf136f9bc6ed3ebba18b158436cf18a794229af52bb8f3f010ff4019921267a
MD5 484e0fb951db5ead06e77b49ab0c1d06
BLAKE2b-256 d2ede8b5c15defa422b610718c078a444dc4a32c55311089e620b74f1fcaa7f9

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b831342be4ec2ed713167f1bd893c253bd6a6f634b55d86c7e735c0eb41af153
MD5 fc148f95bcefaf4940962a024ffecde7
BLAKE2b-256 fedab2148349b6de7c3a79410849fd84b9c9db3974372f1e02d1c39ac930effa

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ea235bbc19e36e53aa04c748b3bdeff930d6ca8c446234a4f152e78299a141e
MD5 afb4f0cf0b41ab326fb7b3df0282e197
BLAKE2b-256 68086dd6ebc10bece0c851732def513d9555d4717b29b4ff31e24f14dc370497

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a64304378d6f23484134bf7a03482a1a293b0cfd852806331a8724a3e690e128
MD5 4c76534aaa9472a8e7d4765cbea979c2
BLAKE2b-256 74d2d15df6161d2d56f47047e2ba601fcd11e67c707e73793fb0cfab77018a6c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b96227ad7dfae0ee2acc9c3cfe998f33f33d761c206eda7442dbc3bce4b2b542
MD5 40ed2d2a46f9b5b8ac787de59dafbd42
BLAKE2b-256 f091b69ed19788bb3271d6201cb3cb53700af327c7bfa72e6711c3a0d65c3923

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a93785a8933c5c4c18f47738390fd047131a6816cd1194d02066b91cacc3233d
MD5 334a10fc655378cdfa4f0abe60bf7549
BLAKE2b-256 1accbb7145df6dfa2971ff445e30a79cf6f120febc77a1135526f6b6265b4794

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 dcf494397a7b6db5cfba717302afba59a7ebe1ef01932515e87b8700faeda485
MD5 244161bbfc7559923fee99277feea2a2
BLAKE2b-256 b2a2e575bb86eb5c458c2139b9c6a8c4492447b0dd551e413011147168a38582

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 525c5f243aa8bfda5a84cfe712a53cdea0a91ec6b8d7dae27bc1d88520a520a1
MD5 1d99e8840755a4072844a230c4ea0489
BLAKE2b-256 25e6353c5e85d0b62490ff6645c76af2f02c94e13582c302c570e4a30093a7db

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e268d5d31f45d60b82ed7735cc42957a6378482c3eaeaa45e2ee5e8b11ba690
MD5 d8523d291349380f4947130158e106e3
BLAKE2b-256 9e3cc214da7600301f8e18859d166bfb1a59fba58e9ac28ae2c229e09558fe44

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b611bedb81fe413ee2758cf0c01e04cdafb9dd3f5f8269e91f9112f98ae354b9
MD5 c72c44c6bebea3f7e76d41816acbfbab
BLAKE2b-256 2e674063d0a5640df32ab40986726eba79210f84465855b4e919fb5b61fa63f3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22118603bb0ddb9bdf4214076d32742530a2a051c337176a2fd0de496fcc52e7
MD5 567eace0d021d6808c3866768ef87e87
BLAKE2b-256 bc80eb8b6c1080b8faa770cb46884d509fc1f7f33d85419ac8853e0e506413ed

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89c6899efdb1e205407d15d32293c1d2091714c0a4a119ad0df83cc2d04019bd
MD5 857eab5463c28fac5c4f79f8322e6a55
BLAKE2b-256 4a17f713f47eecf175f215721c8ee50c13a40293bc71188819f6964141059433

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c9ef60e05054d8ebcd4cf0ab875c149de33a9fb85e4c992feca76e1374f78035
MD5 52e11f9cd9413936b59982ca866a08bd
BLAKE2b-256 b76016ad227885ba16f070fd19c3df6817d0ea17fa8b1a317d7afec3ebc24776

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68ce0e6f4e0e84a3e4e791156d129b1a98bdd77578b39791283567b557dc567b
MD5 303ba0193e0e09ddda2bc083e00a2567
BLAKE2b-256 4a66c5162967dc4f845a27dcf9252f356e2b71390e9347efdf3f88c2b5bfe0e4

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed6650f3c822d9e01d5f18e430082ca9db2d63405d5cedab4de71a78ab61a474
MD5 d83a93c25d4c56ec10d7718af5e94426
BLAKE2b-256 7471521cb53b7b7b0cc1240bd1e507f0b47d1e496c0c404e13bec9c9fcd18d48

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26498da90c8bb5588e8e85b5c8f047f5261b7ea652da133bc955c34828fe5fdc
MD5 21829ba33b75ca536c1efab0e42be44f
BLAKE2b-256 2c7cfc2b2a5490643112bd70d19e47be854b47aa28a5ab746d2c3daf8065abcd

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9643f5672e863b3d8f9494d57621ec6a8cf302d7a1ee79583b598690ed599085
MD5 d3122a4c83383ad64496713a21f2caca
BLAKE2b-256 310b9a7ef855b91dfe93ae52bf4918ba3fe3177348395928e931e42746b72e44

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bce5c4b736d53b911b17c40542906b20fcc20ec213fb5b9d7ae5db96164ca7e
MD5 0dcb08ed91b9e1ec5f1e76da34ecc866
BLAKE2b-256 63f276283d27fad3b68d0386c2ed26d563558bb5ecf7b160c9a23490a78f1e83

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b6a2dc3f23af5159b0e68126fb6f4075bbbfe906c58381accb4970da536606cf
MD5 a7a06e9293280e3006dc0d098410c82e
BLAKE2b-256 8acf8374ba41742fc4c580e0c89028223b94d2511afca56821e3b0a6fde5071f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 157b5a20c2ad98d3bc355f03e145cfe9b40eb54a053bf6206c32c4b786772621
MD5 237dcd3e879e42cf2d5635094e214bd9
BLAKE2b-256 b80ba17ba97649c1082ea6ff04507605b85bfe6d68fb3b8b8ed0d2d4fd758035

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28efdc8f9b49c04392947db210aa5f396f9a9d97da132ba3fe809f09f04b086a
MD5 ab23ea1f858a373c785e1ac99fe0ee70
BLAKE2b-256 f84fed41a06c57b0e6e5478a3c1bc166db1f7025a70e482e4c09bc5f9bba7f45

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94f0160052b5ebdad243a026425ec382a5115dfd565b70283f50a91809e1f528
MD5 da07ad2e9b0bf9204753b19a22c9d004
BLAKE2b-256 723ee80a89ab43408468856e184224dd5acf60c7d597517492e95b6f2a8d5f70

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab5c232850b5b3f48f11f2ea56775f6862dde00b7a4166caa053afa7eb20c7c6
MD5 0d382ae9bdc31e58d214fad5cd669336
BLAKE2b-256 9facc853687fb70cd594dcfc235fdf1da9375f31434c1634eddebec6b002a519

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55994d9f975e89a74681b4411871fe277ddd2ddca053fb18f2cd12275d1680b8
MD5 1753e0abde116e42a23661745c9dfc31
BLAKE2b-256 76259352fac5ec63082a28d95a6cf00f4baad0658600a8c39bf32d756466d852

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1081982ff4beb2fcb12fb58bbd058006a69494465751c9cee895748acc40ea0e
MD5 14dae28621dcf2b122c13ac81a2c9839
BLAKE2b-256 92b226a83ef23cd2a59116c2f1247970bcf8cc148c74c632300abf61b0ac0301

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67bfdde5e0e4e3ca64704f2bcfe53d88ba9326fd090e9a4b67c354700368176c
MD5 6fe34e71354bfa828a4a8659dcfc00bf
BLAKE2b-256 8f2ab820fad844c6a4fe54b8825961444d167f0dde096503f966361da7cb9fb2

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92991af8ea5bb420fdb0de0fa6b22ba1fcdd68933227d08666c18a8d8423df96
MD5 38b984bbec81f689bfe7fe83914120b6
BLAKE2b-256 e849d67ce713a5cd1dae4a87a62cb47be19663909edef71dc8b0575cd59d6c5e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5c1f43136c41a488ed3d9f6d9fbcf4b0cf7c35f8274b24eb658f00dd235b537
MD5 9bd7c98abd19cb5650410949cbb388a6
BLAKE2b-256 9b02798faeecf54bdaecbf21cfdc4f5492befd0cfa2c6d5786e237127990a27b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d689fe778280296a0484af55effb5a7db1deb0a444457cf60bd7fefbeef84945
MD5 1feefd7fcd7d8ef1b3d05269a0f955b4
BLAKE2b-256 0c737cc21e7a4efd78c8e9af3a429da59d10f57a249d18218c3687bb69fc8e87

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27a651389b46021274486d89aa2ab45878d627ec1ab7d0139e3cb69aa8ecd179
MD5 2182094362e5c4da1e24c4a0e12cb586
BLAKE2b-256 d0d097462bb35b700783061063bde388f2620d9576d1bb1c2206a8fefe14895f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3dcba0a84aad044a0154bb9ffacbae04391a2a62bf3c5386548816d0b49a38ae
MD5 f48fe3f48025de7c45b4a044437a0c51
BLAKE2b-256 ef8fcff51708f922bf6662bc5a6e4e48066f5de5efc390a3b0aa6376e667b89e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf47e3a5eee5cd5c405822eacabb37c045ba2b45b43909641818380148f9b1b3
MD5 9acce1f37d21afe3d8f1c00697800382
BLAKE2b-256 19bf962f54fb13247ad464be8cf672c2af774dd840260bbfb12906310f56407d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79945ad94022b66221c73ac065c2eee7935286aaf2eab7b01610b46b17443e53
MD5 3d7378b55804fbe2c8610866caceec4b
BLAKE2b-256 6cec4e1274084e5dc6b919d33bc8b1bd13e6ed94050dae95672ac63bb28526a1

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 842f67b007e9bb292bdd3ad0994a539063b6577d8a9f199fbb6b060980b0320b
MD5 b225e2f85906dfddece5788ff3cef79f
BLAKE2b-256 d67090d04085aa94c409353d5dbe6fb5e48310b45f08d2933cd55b546aee2949

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35eec01281add3d1286377fd96c08be0c98b5597977cecc9907dfe13802b6485
MD5 e3977ca0f7a639cfc7ab4c2961bfde73
BLAKE2b-256 8f3f0d93772248551c094a73fa96f23f5022bc0733e229ad717e84f38ddfcc6a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf8e0dfbd5c002d1ee2aeccbf490ada1d0c6684004601d0571ab81aba1834a3d
MD5 968b7eb04c1690db99e7a514fd910597
BLAKE2b-256 cc148d49ae514514f7ac0884628f3b7bcc1624ef035947473599870be572e2c3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef617c83004730df6163bc9dbf2d375dc8b4e11b72875a68020820f97037f2b8
MD5 dc0cee7d0e42339657b70ebc5137b397
BLAKE2b-256 09e51398596057c4bbf616cf923fbd116e4a37f939d35f589669bd67492a3bcf

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3b79f9ce23754d47632d580a848d280ae68713e2231e7b7db8996a81c782e19
MD5 4d357cd897c53a951dc6b9ace831084a
BLAKE2b-256 a06132ff655fec43e2e0415269dd93aec74160c98cf704ca1872382e8aec6a71

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de6326a19a2e02f98f7e3d6cceaa377b4aba9df5e88eab8c8d7dad0a061b5dbf
MD5 9400a0505b2f15a8a5827b5b88ca5096
BLAKE2b-256 ba03cd56551a3054b7569c09699e53cf0bb25303cf76b42ae9e3b8cc0b29dad4

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 511e9891bcee9447e04fc022b439d0df4b6aa5e05b59dd5f5ff70de0153c5978
MD5 e25b5bbc15061eb8aef1a022f62ee864
BLAKE2b-256 4e6ebc195fb456dadcb80262e77d9a3782512e428fe384ca3d36c33e98983b01

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efcd7276c538c828100a0cfc366a0e056aa0eebcafe1d2bb5e642f5ead0fdb39
MD5 2cb671b53ccd9ee52a49ec93aa2c3ee2
BLAKE2b-256 7420aec428489b8ac7adefd60c170da2a78a0a9233b89679757aeb80fd019247

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6d2a336bc4aa01a95fd8526c6efc3b25321848efdd7d918a08fea755e1dac92
MD5 18f18dc4e16614d6563387e1abd207fd
BLAKE2b-256 a3e32c4147ca6b93d0e362dea8346a9fa9cbb0a0ee872063f074967fd8690edd

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea1db7ddb3188295b9e3de0da1aa167ea92739c50fdbe5f2fe36f4c45032f20f
MD5 96e8bbab0eef282ab25018973137ea8c
BLAKE2b-256 46d248816ac4f2579374ef5940fb70f3aecf1b646abda9590e7cabab4241a45a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b2b13311e26a940200d16ec444c1f0e4e9f183c0c90dc35e2cc72b9f149a22e
MD5 c4ea59b2294b9ebff601ae3118b8de85
BLAKE2b-256 5688303d211a494fab7e163d360c6c4ec4081511f5acdc1fb332e793a29b653f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47dd7163980bbbca05943d41d05c922db20b45ba33088c63e229535a8cf473da
MD5 df4f24b47c95c9af2482b9b6b30ed32e
BLAKE2b-256 cb8f439572e518be9194dbbe6e563cde70ead5a2d4a678179a753a071a6cd3da

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba6b4b6d0a5c0fb28dd051b453d9cf286abffa8a952ba4742f01b2c96e828789
MD5 124ec4540029935e5d8925c760b3cc41
BLAKE2b-256 8bddb1eb5aac0e124bcc4f8618d14e7f2c61bff6b0b0fd46720816e761330e23

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d63db6eacd283d91fd45fd32d8cd65f93aeacf5d7f78a39c55a9e3a733867499
MD5 e28da9e8b6c430ef4ceeba543d71b481
BLAKE2b-256 7403595214fb5a0c0103da033409f23856b87c9c00df94795c3a858299e80704

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f24c4407e35311fe1c2cd70637408b5a3fa5a8e776dcb979873e395826530d30
MD5 67a95cbeecd0356c88b6f4db4e7e427a
BLAKE2b-256 8abb8a61acc2cf1430f202521347c76a95a81c13c4663179b475caf0d39c442a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Supported by

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