Skip to main content

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

Project description

turbohtml

PyPI Supported Python versions Downloads Documentation status check

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

Install

$ pip install turbohtml

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

Quickstart

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

import turbohtml
from turbohtml import Formatter, Html

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

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

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

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

import turbohtml

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

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

Capabilities

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

Performance

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

Design principles

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

Migration

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

Documentation

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

License

turbohtml is released under the MIT license.

Project details


Download files

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

Source Distribution

turbohtml-1.1.0.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

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

turbohtml-1.1.0-cp315-cp315t-win_amd64.whl (939.2 kB view details)

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.1.0-cp315-cp315-win_amd64.whl (931.9 kB view details)

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.1.0-cp314-cp314t-win_amd64.whl (938.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.1.0-cp314-cp314-win_amd64.whl (932.1 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-1.1.0-cp313-cp313-win_amd64.whl (908.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-1.1.0-cp312-cp312-win_amd64.whl (908.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2880aac1514a93b6be3458da67496486211a707e2d726bfc44aaab5b8d1d9b4c
MD5 c4333e7d49e0681395dad9563d7af668
BLAKE2b-256 4bbe4be25724db0d3c4d27f9a03cf95c0f08135357fed708c723afb155e91b5b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 a2da4cd30b6646dfbf5173c85ac2f0ca45798adeab2fac2202cc59203190d2dc
MD5 9f83a0e0125e1d14d7a8d72fb865e54a
BLAKE2b-256 c74b1a4fe30aacf95e52812410f989eafc1dfdf9564660cc51a36bf87e0bb6a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f96624e2235697f277eeb4b0805c6ef6aaeb7d859238d5367d8c5e92654c333
MD5 5b4dba7fbd8189404c3c1f8d83f9c189
BLAKE2b-256 c3836f6fd66c5d8a1bfdf2d4c7881dce98ea9069d27f202cb223275d94ace1bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a32d0db1f5671f57a5744e5245c29f74993f26808f404f1a707963b6f6a00a0
MD5 de8dce1a9343631563305b172795cf12
BLAKE2b-256 9ac3c3fec40d710b2d781049478779329c1f43e3c3a18eb11bae323bcf138a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa1650d9ee095d083301be364bdf64be9a9c460b608611a8a67f5b4cd032a180
MD5 60d61a5372c46b25764784a226ff988d
BLAKE2b-256 028aa89ec0aa5205100421c39859349ea6e38175b41b8306f107ee4cbdca3be8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9bb4faa70d1fc00427bc02675b15166464d1aee80db092841db9ade6910e0d5
MD5 e81cda37a2004c54c1e29bfa6a3fedc8
BLAKE2b-256 c586651fa244925e8c5d5fc0d8dbb2a668ec6873db8ac8973c76fcf22be1e660

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a97c0b32979f7e46c321a45ef6a4ef79b6bc15c9b7c1df579d0abdab02eeba83
MD5 505d11dad91c2cddd4fc416170f26e64
BLAKE2b-256 95fa05b7ac6889c94001cdff30513eb6f9acba32b68cb798d884559609467aab

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 975fbc9cc0bd814e9a98e548878ac73ef2e7486334f7315b1b00a5991f02d06b
MD5 8e922c5496ca366abb88986ec210e41b
BLAKE2b-256 ab8649a7189d9d0e9268ddae411d1e6b95132ad355c254e6717376c16f8cedba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3691db3a9bdedb93058b4174755e46cda999b96abbbf49a388be3df82366a100
MD5 49d0c1f6fc23d149b41db27ab980fffd
BLAKE2b-256 0ceac4b9b3ef9db4627faa499dbe7559a3757a33d991b230c7b2d9db4aa5e961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65531fc46a57410ac5ab75815d3f386c908163ec87708d2968c44ad48d303b65
MD5 0ffdb91ec46d667e0993a26c16b3a384
BLAKE2b-256 c1b8764eed5e9962050a228fd4ae426e5ec50a860ec23a15d29763cf20679216

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01721245a26a7b4f11a8287f16dc98cd960fd0cbf87aa868de857015f6aced5b
MD5 c548dc8dc69315b63ab038998da0fe0f
BLAKE2b-256 31b0cc2d9daaa534f39ce7257bfdce319ef48f071b521853a624322cb61584e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 582b93ac9cfc71c0f74d5062be7f71e2b74b72e62937189652c3e8a696ced21f
MD5 e2a3e012739e48d0a423bb29413529f6
BLAKE2b-256 5fc03aa715d0b6eb4c7b53460b2a840b1ee629c60e6279263802a7e8df86493d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 643de391bbab613cb84bf68084afda5f1ba7688885980588f39e19f817e663ba
MD5 4481e988f783ad1faf7e6bc2b44bba17
BLAKE2b-256 ce4f025d4265335b2333bec60836c6efca12453a9040af8b766d0c3bf8e3d3ef

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f1b1885faf6b83f306817d01ec8dc6f24ddd4b948f061f7b9ec85a7a3eedabd2
MD5 30deb01fa88e209a46719bbefd1286e7
BLAKE2b-256 df95b231e9f6b0c9bf323635585781758620c8807564cf458d2e195d3111dac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d7891600f2a71f6c1c024b385fbabe21fe94df31f804af75432ec5cec4efab3
MD5 49bc08033125de33be6b5c8ad2626cbe
BLAKE2b-256 7020c54ffff5832acd44d6e4a977b859eeead9d8830c560fd8c6ad1e5f60c50f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c79e004014f8d10be9b2feaf3e650bfd16fcfca6011480e0370ca7333347acc1
MD5 7e3cc549029ac9bb0ed26bca9c0bfc15
BLAKE2b-256 17ae7d9c911d108ff83986fe9b8b52ae6b3d79c5ee5e5f33271f3649959dcf56

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12b4b0ceb3eb4567176032dabea30f1ef4913ba0bfce4d9ebfb42aae7fd9b095
MD5 f1c5c25a8b83b6df184349ff694714d4
BLAKE2b-256 99d84d91a773ede99aa7a0fccf99bf2b07f95c5093ed124668a789a6676307a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88f4a1a1c0b69d86ee15b2948015d7a0afee070fc348bae932beaee33fd51f80
MD5 b5759e755e1c46eeb7ffb2fbf4ec4e40
BLAKE2b-256 f134e611ad84039c7bfd1d755266d0110f9af67e17dd0599ca6ef5298ef148c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92750e1e5678be8ea1c50867776aa0173393a9e4a70d4300561dfe9d637e1cea
MD5 d536bdb966b7f3be324f892b762e70cd
BLAKE2b-256 a26ba4322deab6464bca294d19c4325754d72bfa5ebc28208179f1ccf7c15075

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 18c5ec067cd872014eec3497d573653e943149b9d6ce6002caabdfb185553afc
MD5 169e4c157b6e2dab2a8201d9630a0066
BLAKE2b-256 52898517b54f8b5d18be05e456d9a398adeca81bad7e924078874f451ef8feb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 699fca8e4b6c248c5cf9ab21792d32bbea8705bfe93d0a4f628f44c7c3cc7245
MD5 3acfe0b067cf3966370c6a3630c5f648
BLAKE2b-256 82e1f5f07a4cf6f5719e82d55c814f7fb92eb4d21d059889a4fd45d53761eebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3fc863a45a53ddcbefb325f129ba94baf72ae8ec6ac6184de379b5b6d6ca988
MD5 11cdbff71bba1668082e653abe555f4b
BLAKE2b-256 bfad71d12234de75b23813a6400f3ab8f86cb87ec910ae4fe853431302838046

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a13529c986e6c23638b8e38886fc8769cb2a16e337f7ecd1198131251e5b033c
MD5 361fe5afdb2bc904c0f2c0f319aea509
BLAKE2b-256 260c0b5247b296a8b70a6234a2dd163f6ae72afb3df8fda574d0ae8df7fc24a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdb1ccf7ccd05994178c86c317e3c5c9635c1f3df6baea3cbbc7a35a9929ff47
MD5 0af526417f3c2041089644be052a79ef
BLAKE2b-256 6107f7ce02a42d8c3a63a01d6875ded18c1633827340b16c603729a8d8e7f6de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b146d892162b5fe9bffd6e83596701be9851d6cd9eb3a62ee4121fc7d0c393b3
MD5 72e5a9c92bbd5ed8da240fbfdaa448ad
BLAKE2b-256 8a86f3878964fd1f087bd7827cf0b3530455f571915f9bdd0da3626073ac0315

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43574d1e3274cf26691b344de140e02be8ab5c227f1e9c34eda894153fa087d1
MD5 e983ef5514a96079dd400e6ef474a94f
BLAKE2b-256 8746d321db507dc9c4a09dc73ef44cd777ef84a7879073da3cec56e1e02fcb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06d9a8cfd875858fa0bde980662937ba4c6fa9e6108a5db1d745b2fce32f9a1b
MD5 d4d1e36e5617eb134c0984118b4d378c
BLAKE2b-256 14f7372707414a7725b6776e4c2956759e719077fb7e5b65370626d28a892661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 822884e906d145c01f5ee30967d8ef2dda5ff5d3c88aa57d47bd1c24d506c803
MD5 902f3e214c8cd0cd967b517ce478a399
BLAKE2b-256 3e8957b172b39f43330f6265d625437600063071a5831a0bb5b1f2dfbd598e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 713017fc389ffeacca7a48bb4a6efb900d7b830e50e513f914ad5f0874f37bf5
MD5 3347ad0331065b298d9a9c880b48da4f
BLAKE2b-256 2a0937bd0cf092f7af70b7c6d0fcd461cc9eba53dd00e3ccc4d342851cedd695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab21fde4829d69d7d93a8cf094bf2e3d21fa339027fa04f87a5fe06d2b52d92e
MD5 8e2ece514133cbb86edea79f61d539ea
BLAKE2b-256 cfbe901494cd84ce96b84f7c55d3a13536bf98590185d31b5323938253331b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aeaa2b33d1e773ce5e59fd94a6388dd1a5df36db928a1b66893f37c1ad9e631
MD5 f85c23e4cd4b81a8cd69c0287b6e77af
BLAKE2b-256 f1aae4d8e31e7e45a5ed89ac4c0e844941cb6465da3dfa4dfd6c674f758ea75c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5e769d3f3da9d3b5d85b1a1e67dea4a2f0fc08c5025083208c0bc8337165064
MD5 1932cf9daaf078a1a5f299c335af26a9
BLAKE2b-256 8825374978ad1bfc4cd70b51ece76f75ba26ce21918c0efa402728e12e51bec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b68acc07c7a72fd7c226a5ab3b0a4d1f9af8452e2321f653e0b4fd3aa859dd8b
MD5 80e984d4a622bce50cd2799dcc713408
BLAKE2b-256 67e124247447b458122b9dface3b738390a2a5918e8bb551869e3c9e67e6e4dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f1aa9f35c988e06cb95df42c6aec9ef35d44268dda24e01da114ed113d10327
MD5 8a0854759ea334a9198abec367eee770
BLAKE2b-256 cbb72ef4f43f415c07757a8e265ace45eb1bf7909af43d893ef685205319aec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 becc98e71854c975061556b6535e5dad8d8637ab378d4d738f4d776b58d62b74
MD5 7e2c9284ebd8e3ee099e58550acbc1e3
BLAKE2b-256 579e215171fb896c308525f6647089884ad5545a2e1a2b21f762d75946ad1ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bdaf17b41a44575098b145a6d0e569096e29324c1dcecf6abede51eb726f67d
MD5 1e234ece114816f983d10164ce75a76c
BLAKE2b-256 2343ab2782d6a969e25ed340fa2b529907dd888458de24ade31fcffcd984e1fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05598169068540f695dfe9cee39e568e0f8ba2b1db67e5712c462216e67f78cf
MD5 7134ebd5d69b9ef34365180a65cf35e6
BLAKE2b-256 699113e4fe784ea2c4cddbcec9ab0e29f72366dd18695a4f09235629ee08eec0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 24f388216eed5df1d84dacc3ac9e6ab5c375d0ed6cc7cb99a6aa06b4d9405b96
MD5 ae0378d4c33a71a6719e044c87e60d79
BLAKE2b-256 90ade41edd7ffc79a379d67f60cddd6cf57ee7b2ceec6190014c2788d471d27e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2362b29ff5bef38b3765633d87414a97a12f4ab4f15c3d41a040060d5de24b1b
MD5 a64ace942e6e85a48bd04736621b90bb
BLAKE2b-256 4fa1dd8023c6de3414ebb39485dd7d4cfda6c98a88375792ae2786d5ac69149c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce9b1e2abdb444f7524222fdd037ca2bd6b0615161de71fbf444239c1d5537d5
MD5 94221d14c3ab66629afac04d0cdf1545
BLAKE2b-256 8d26c706f6546d08159a04a2ec3d61d352c5317038a55f947da4ad6e98267727

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e20061703e9ce1d57c259b73c6d4c07a52a129192429444203cd4502c254f89
MD5 a33df60c8e91bc1126ef22d21731a1fc
BLAKE2b-256 29941aecccdbcb22291fb2b8b5a175efccd6d3d5b562b5bf5e47ecbc615ecf98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd7069d27f49579bf381913e5486eacc8ba47be50a5f2c52815b6c194612cc39
MD5 8a860a5187e9d9ed3160eb0abf2cc6f3
BLAKE2b-256 61549b8c3524dd1ded020bd3003eb4c26c79ad6242c6c0d80eca84ac2a34740e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d69d420932ec94928e4c9c3673734b95b4b16dd1b20c2c5f8198392adaba865
MD5 1136daeaa16fbcfe3693f0490848febd
BLAKE2b-256 ce4d86edb0a2f7bf899ff338c0b9b9758553ef18fa6a7c7ad5fd0a508f86d304

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e5bea97b3031fa8aef87aec23ab18a82aa927fbca486cfecc2cd09c0219e80b
MD5 7c7b728bc0e570d9aab24cc60b5cb259
BLAKE2b-256 dc22dfec18cea0876f0d4f1e5d588e9c269670c02ce41f6fd6fbb684af065e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d74a6bc938acdc22e0cd9617d469ed302a2fa54b2f8c690c79af7e91d23fef0d
MD5 70d9c1957e607a5564930f0fdfdc84f2
BLAKE2b-256 7046482ecb5317c3bc4525a9096cd464dafa6f8186f907ba5b1d2f5f3ea0e965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b31a3523a56549b43cb3e3a475f41600b1f0711edfc504605641b9d4b9c87d75
MD5 da009dc2d2a46bf43f292c39a8810e17
BLAKE2b-256 7b59020134f899adda7209d68b801414b758946508a145e898b711213adf71d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92c4d0b554ed7d19028228591e3f252f27a7b1d7523a8969dcfff262df310437
MD5 7675040f3b057cf2bec9be572f3d348d
BLAKE2b-256 e35450200e7d2f0485cdcc91b33ecf61a14506c0a0220e325f5fba221c092ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bdbf71eef082bf322e2747fe7dc7fe9182fd146039a279a4ab1160b39a3f156
MD5 353a8ebc578d62833ab211024eccea49
BLAKE2b-256 d23a15f1247c58ce2403bcf6de9f705afff9a4fb70ba807fef33b5b1ca97012c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c2b97f4a582835985f234b902554398f97588112114e84584623fdf29d763ae
MD5 68e01ac6438a49a18751f0886f314869
BLAKE2b-256 4dfb5a5ca6bcd4175b5fdb89059d54caa2a193c68206d6b149283df59fa59628

See more details on using hashes here.

Provenance

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