Skip to main content

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.

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

Uploaded PyPyWindows x86-64

turbohtml-1.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

turbohtml-1.6.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

turbohtml-1.6.0-cp315-cp315t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-1.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp315-cp315t-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.6.0-cp315-cp315-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-1.6.0-cp315-cp315-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp315-cp315-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp315-cp315-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.6.0-cp314-cp314t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-1.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.6.0-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-1.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp314-cp314-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp314-cp314-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

turbohtml-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

turbohtml-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

turbohtml-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

turbohtml-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

turbohtml-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

turbohtml-1.6.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.6.0.tar.gz.

File metadata

  • Download URL: turbohtml-1.6.0.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0.tar.gz
Algorithm Hash digest
SHA256 ce37c1c5c5d1c4666fb5c6d601c4268631268ff72026ef94efbd57828beedcf1
MD5 72b807ba27aeec054a4e1e5b8ac69990
BLAKE2b-256 8689183c477e8a6c9236457267963ef6016b8e14ec4d9e3c7af631a9d85aa6b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7bfc6ca2e8ee8e90ac5cbe138e29134eb0de8f8f77f2e62f8f2c16a10dc48d96
MD5 3bfd91920bab796c2a5cd535ca2e7771
BLAKE2b-256 8d5fe010d074d96672426e7fdb06f66aaec9696584660b6c69049d4b1d221369

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4623a5c74596c1fa3c58bb0b68b3b20544cf562a2e7601b2d512f8935a62fd47
MD5 8cf21182adb044acbc713666a0032dee
BLAKE2b-256 0e167186603b654116537274327c56fb94dfb7f56114caeb6a6e27e304114373

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-pp311-pypy311_pp73-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.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 569e959695ffd66894c63297d0f3e790037e093ee24cc0ce2a9bb8386a6e1b0f
MD5 8d9645acb47a1b9ecf1af44153790467
BLAKE2b-256 8a1a3646b95c1b02750e6cf0595f256bbcaf830e254fe86739a44e53377499aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4a721093ea4dab772128946922e2a6aa8caec271860006170a5ae87bbb01c7f
MD5 f5f4439947e03ef41b599153a21868e3
BLAKE2b-256 ce28cf4bfed56acffee8c9da1e29a1ad91c3f9a977d626555bbbcc291f9e1d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cac3018ff306e7bbc652c5a7f84c63bbee6fcde76ebfabad1852aba12bb4f945
MD5 d9f77f313912f2d24320cecb497bcab8
BLAKE2b-256 fe4c7a4f29d50fdb9b75af4eb395deb64b76b8ff05ca971784ec4ede1fc4b764

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e2ba971f318e2c7348539397737f22af5459cd498ffb2784d280a91f8a4ab9e
MD5 65da9fe8196851146268e0518423defd
BLAKE2b-256 3619a664b645d0e26c8cc2f1d93fab4b6b541a3e6edec51e17e534922bd2e0ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-pp310-pypy310_pp73-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.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c8602c2cefb414880d3b8a369f6503f5bfec9da5e0c4139b01ae29f307e68f0
MD5 454f31d7097e23c64cd89c0d5ff44014
BLAKE2b-256 47ca093686595a090ed87af65f08d0ce75e715ffdf3a0cbaf4ff47d9e6731c60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 749a3a054f26cdd47f72e2fac8d8e4d6e197937c9d33c9a8e233eceff0f8c333
MD5 f1dcbb83d40f18fbd2d1c84d001710a8
BLAKE2b-256 a2977ea425e952fa4c4f76fb5b68e59ff728f64b9d4e7cba40e930b3961ed904

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 80ee42b427c43bc5963e0a15d0143dac681c8951c37c37cac41b87f093ea2f46
MD5 4f598b72417b67ca2f1c2bf53ea91b90
BLAKE2b-256 ff973d4b380d911e10e5cb52b342cdfb8226643d5e42d1cab205db5b8f2972b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 444b8a9950e1c0d9941cab4c5be22c551db996da7eaff9022d6fd64ca881e63a
MD5 4579254b4fbd8b96dac922d57f1b9dd2
BLAKE2b-256 cd9de4f36a9e3feb737e8320c71d33c7b88b0ac62ecced69e38de4a14c089697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3079a427ff204551d2f57058ebd84efc55dae5ed31cdd78582c3ac6097abb06
MD5 e881c991d4cbae86ff535348104bf8eb
BLAKE2b-256 b47f2b390ad151be4bc4dbd5c93edaf1d96b6ec8104ac7855d7736d843286265

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19baa213247e7e940570382149f1a548354245f0c2451ea6dba9a9ea8d43c21f
MD5 e98b11301ffbdb10952ef63c33b8e985
BLAKE2b-256 2dcca56162459c6935bde69eb483beee30e7855866d44619c90d00e7102df6e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp315-cp315t-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.6.0-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58db43bd49eed33b39ca988d9f093eab85655109f7d7fa1f238c11e416a8de26
MD5 14ba9f80653bbbebb029a2330f197318
BLAKE2b-256 208338e3baafd2cd93bfb18b6a814a5254189129bf5740ac2cc969e969a32142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9aad51bb5ab8ddc992db46249c48c650b79dcdd0f847a3ac050ebe9c92f03837
MD5 eb24aceed0f66b5ca30b7d2634cbf785
BLAKE2b-256 79c651e9c51b8b4517b0743b9d4227a09614a0fe2401ce644e68daffee26215f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.6.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 6c62509841b5f789f4dbe9803603da361ad960351172949d50d09d0d8093f282
MD5 bcde1377f37276004bd9fb7192654ee9
BLAKE2b-256 acc9299c742edf3e95249cd27af3a7bef36f831acb66cf2026b44302c4ef5e16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79508d77af46b05a56ed6ac236d5b4b7cd4477f5febff7a16b2398878eae76ea
MD5 9c740962c2ed223c2e77d4c740614238
BLAKE2b-256 14d10ddb7f3379da1875131577f7c24ad52a4ff9db9872e1b512ea305ebdac87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e66d4cd48f13f032a5406ef445bf85aca0ea36244daf9b95127cf8c754bfc58
MD5 381412c4ab276f180e3e075c53b1ccac
BLAKE2b-256 80e4c2c606ec389a0baf6108dd6d6e230aa725447a4c8368cf12250172e7a4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca3b65f1e3453c9a3204a26ca1742f2f966ff40230b7c9350f20180696cb84cf
MD5 000ec3b04c20b9425691738080a3267f
BLAKE2b-256 96d9834033a02cb7f8a127bb8ba9fb1306b3c9c3b4b02face64ba9de0064bd66

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp315-cp315-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.6.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 60109c8eff33e9ac1f22e1148d8448d220a21e2c3d0b89eb7030a91dd77408c8
MD5 9746a58629a9dc22e744357a24a7eb38
BLAKE2b-256 4d440bf375c687ec02d9a74cc7dc1b1bf626051d6bf3db0e7d75db068720279d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d244db1dfe471bbff1d8d3df4abb2644de9fdac2185518d1b34a72a5eed210e5
MD5 9e570dca03ba88f59f19a3b7ea289ee7
BLAKE2b-256 4f3e1e8a648d992df6285069e9f4b41801b3c0d607436fce016f69f67a15e0c0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 44a39bed942d2bc721a2181d6b47f2128379dbd3c0534ebb592df0f8bceda7a7
MD5 a75efd8fdee32621ad64bf6d36cdd9b4
BLAKE2b-256 469f2fbb265e082bc94762b77db1313dadaf6db0e7a512ff5591ef0f8a9db7f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83303fcb13cddaa450a25a0376e4e211aa534eebd4e4a5d679ef7f2014e908ec
MD5 bf3e28a7e5dccfc6d0c4b0925c607993
BLAKE2b-256 6c6c1dd8f63083054e850b11551cdafa44bbf6c3ec8f75eba1d14f836f74ef55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fea7c1eb9687a4233ad982e856c8c05b4094526feffa874648cb3c49a001ea10
MD5 a85d9985eda6fa76effea57a3693f964
BLAKE2b-256 596dfd7ef536736cb6b9b8f24028cc2b8eefb47d7f0cbca2f012c2232443db49

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56aaa3d0d6f4f63813ba236fcd678d855c0bb1243fa3c86f890b92bd4ae2084a
MD5 d80ba226c62cb772ff28482bc360e5cf
BLAKE2b-256 e09d5ba097fdc01b99b22fc310fd487af09de03855c13681fb8fcd51b88b8add

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp314-cp314t-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.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f56e398e150fa764c1defa6efebf0c12ae2f37b45599f1342172d3c6c8eb1cc8
MD5 e3e27dc42c6c1462d0b9abc0a463cdeb
BLAKE2b-256 04af6b1c3290ee6f36854d0f216e85454104297849efbf5ee063e27b216839db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 127986f098c0e7dc644232f4be4cf27197fc2f946d68af1fd9882ad495eef57a
MD5 be17fdcc3288eec9c5d0883d225a9864
BLAKE2b-256 29fc817637778bc021174aecd58fc6de51447389fccfb536760f30edc9686052

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a13b3e88a164a8e901f13d0e3cf75e5cb3d1831c7a8fd876c220215873586a6c
MD5 34f587d8b2f33331de4c8558b95cbbc6
BLAKE2b-256 519c0fe8d7163679f1117c7b2ea5f3498a13794065d66533a7977b8a0a63b173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 651b05c4cfa29effc7c0b2bc159b6e1f5a0f6e93e7dc3707c22ee8dd53e0f4c9
MD5 71e1ce8525ade80f1068f8abdb9e742b
BLAKE2b-256 3f8e4ed59af7aa47d7c435091ef62193dc661ae93e8d6340b52b14b81595c9eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c987aae7d0bbffd40283ad19ffed23938e8713af9708c69754f8d6b2e868f752
MD5 3a76f9ac0106f949ac08fe66ec0048a2
BLAKE2b-256 7af1b35597d30e771cb902b69325b635b926bb15bd017760e08207f143697bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21aa5406dda010aec682b069ba93819f7da92ea14577d04fc5d21b3c2118a443
MD5 c2d21964d40b84b7d90e89acd6143ea4
BLAKE2b-256 3ce1522153dbd1250fcb17a9731c0e91bad7c4d0955fc94b7d990ccaeb1ca252

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp314-cp314-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.6.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac5bc39ae2d03aa66fd96cc2a4e01ee2a3e5a66d69f3bc390cc1492754ecd3cd
MD5 823924b8a1c6e5738057173b60600714
BLAKE2b-256 a8884a0823b23082975b3ae3ca3f2126e5664ff8170325977442f31a17575c41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8a22220dc65100090b2c747308878672c5d0acb9f4d44af647900904fedfb78
MD5 969b33603569a52d3a0ffebf872cad22
BLAKE2b-256 89ad617374a793320847bc44cc69f938ecd2b3c7fd5f387705f5cfcfb6e1f87e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.6.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/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec79394bb819ed25ab9ec8951d42fdb7787286c7a8cf19ae403bfaa432dd8697
MD5 b547f15bebdab7ad81e8725ecb90afd6
BLAKE2b-256 ee7b4933df73818b95c2caf0dc90df44a1e9641ac45bbf28615daf3d478ca7a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e23340303e312f98168ff60dd21c43d1500facbfecdddde23d6d884c0bbe3c7
MD5 497c589bb8cf30a5d70f203b262c1621
BLAKE2b-256 cffdcb8194deea30ebab9a83bceeb1d159372c33dd53c7c6d8f879b23ad4cbf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22d81a712bd3abd6214a05e535de7ffd601e221a11afa128b1f0af358c27957f
MD5 975bd1eda1a8be43d8045ebd4b3a22ad
BLAKE2b-256 f23ddae13e10fe1ea826e7e89f418e3928c395ce975f1d03d897fdee827b800e

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d175909f8a3d6874327273b12638a8b100640b4579e1e7c45ab233f4915967ae
MD5 a529d70d246828024d5a9874f1230f67
BLAKE2b-256 a9c8ebde1e08b6994b39b39dae02949b07c0fb1c1eeaf10b73c23d116085c3e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp313-cp313-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.6.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0810093ce3ecfa50d3ccf3b5b1075399a56e12e2ccff80dc239dd007555e926
MD5 d6d456b407ff5e70b52f14b7188f0424
BLAKE2b-256 6184007d601364ec4c577f13ef24a444f09576f4b1081a83acdfea2a089f93bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2d348985c5d7232596aa956c416a3cf2841498a769d52a48a68ef4bf5f8d362
MD5 173b03d7b9c508db7d9cf1c040638fdc
BLAKE2b-256 277ac7b80f253008d0450a10ad262510d2ef44ab52dc488a378829d35ccebe83

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.6.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/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50b90941af3bb96aaffb927d7f193d5e508e148e78b1c4ddfa08643d6e87aab5
MD5 6f494cbf5d82ba7320b9f018c482a83a
BLAKE2b-256 2a167798a5a36228096a3ceb373a298e356d18675dcb243e807c2fd464c52883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f38a82e29cda6e3ded61113436abe0092dc056d7c2e825dacd6a43edf90e5f54
MD5 72c9dbcadf42da709a3460ca26983cdd
BLAKE2b-256 d6ac59143ed5cd33b1fe7fc7005d1a6c7e89c94f4124669b9d11d1fee677aaa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c4dd04a323e906884235de8a11c76bafe088757695a82928e1793789603bfcd
MD5 367ebb3f6768b752b1aa77023e45816d
BLAKE2b-256 a484693970f94bde3ebdcbdae4a1dfd2f69aa26b505f6058842cf32a99b4d6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9277693b149ddc2585c954d17ccb03223bbf7cf39e5615761afbd0acfe337df5
MD5 197bb06706b20906ef67d2fb0bc90b09
BLAKE2b-256 5bb147dee30fe143428043fff6746528a036d5ab2697d7931375914b483fefec

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp312-cp312-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.6.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9fa79a310c6aca371b16263c7833729398b1526cf441536bd2322c06e58826b
MD5 6b401ba048dad727d19ac45c1fba4e3c
BLAKE2b-256 b313c01042971a50cd01234bedefab4bba035296b707e6eafab6f199fd3c7f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e064c900f1afdeac93eea5f9d523eb4a13f1b8bbbba3fe48df037058a597ccce
MD5 d41391c474cabad18b60dce5dc6b661b
BLAKE2b-256 aff38389cad6e25c1688be37a24af063c8879c189b16f7de69d4e915964fc783

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.6.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/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be2649f0d92d3e73cc94d5dc9e05f06f23f1e28e23cadcc147383c78d35ff4f3
MD5 1665e2b41154f3fc1406481562e78ae9
BLAKE2b-256 3d4facc108de882b131e4e5c59eae3571603e6e55a11c7081fcfb45d04e97288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f755b990f48d8ac104c29301faffd84335f04972c2b595b506719367b7b93a8
MD5 41d630bd99c8894a229523f838d12d60
BLAKE2b-256 32a05970388a1049a59494a39a4611c2f7d0d04a97a208df25f3cb7f91b4bde9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65867d4a97820a484c806eb326d6a4a49b939e0ae76a0d57be9150deea89bc92
MD5 6741296bf91f99284f62076d5bfb7d23
BLAKE2b-256 1b95e1fe1f840590c21f672f9a01c7d2925eeb449ed579852e68970cb1d2aa4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7863956e26da73f1c1e089305dd26ad7f0670ef0f6da04bd83dc4a732bb223a
MD5 2a96a5a7b7a36c8fb12766d31a057ed3
BLAKE2b-256 1b9ef4cc8d9358109beb37380e690c73ef07098f06bca0f44fb262bb2bbc0a78

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp311-cp311-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.6.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5749fa4693dfb4559f51a3104829cd981dea990a4dde2177238767e79e39abd
MD5 efaa27265470184cf307d5b23cc88184
BLAKE2b-256 cbb80d2f86253bedc1868a0699133824643d22eb9849b96ef21698b483f1c6b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51cfed034b70a8f7b5351b9b8929bc2805493871202f698712ab7d83204e5b32
MD5 adb39c218bf0f948d1ff3030c52c4bc0
BLAKE2b-256 c04f43eb1d8ea140c12db9f9aa04a23e1cec0e641a5ce1cf7c71db45612c0d64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.6.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/7.0.0 CPython/3.13.14

File hashes

Hashes for turbohtml-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7b2e02e94e4acb0b95bf2b2405326ea1ae0d7c6312c7d36b1e262232bf62f0a
MD5 37ba89a34a8468b646b0e0943e3cea7d
BLAKE2b-256 4c6cc3b5af49f7d76eab571c8fae4bea76a13051fc0af33199212373915aa2b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f0c4558b1da7404e403b54c6a8fb35f1f9246c840dd593caa8046ac56bc6c3f
MD5 9f028465cdcdbd54df43d7c466a045dd
BLAKE2b-256 604bcf1ddc724d079e3f52942d1e39fdf7e99e1728a88e9121625f9d3c74a687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9523151d44b248081761f845d8d58d8c660d7d614f039fc3cadd025d4208e8f
MD5 752350d7f134540bae89b602b5cee2e0
BLAKE2b-256 0415e0a0f0cb52f9629829b6459b4342aa0fd4c958642ad9dd9e70228a6394a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.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.6.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b42f82e7adcc2748c44bf482aab403cb3d18805ab97297452a510ee177580d4
MD5 d539d938da552346f5b62add720b0ba2
BLAKE2b-256 1fd95440a286d2b143b73faf9835f83f699a75f5d6e306c905837f4ef552cbde

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.6.0-cp310-cp310-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.6.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4659d2b4ce2ccef4c7c531a3c35ae13c0f0d0882e376fb201c65e02029030132
MD5 98a7af382d3b39635dfb368d703be853
BLAKE2b-256 0091ecaeccf3420a13879f6c6c251801f4372df8191dedb60e1b185b6f0d788f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e08af4995a6ae5a7ae86869699de01f45f086a20c50f1c99bd2cd25f049b1a
MD5 e3dd45346fa30da322c520fea24e3091
BLAKE2b-256 3d28acadc3f8adfa4e840da714817f48b7c5bdeca7cb67ee9a4b239efa6dc460

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

1.8.0

57 files

1.7.0

57 files

1.6.1

57 files

This release

1.6.0 This release

57 files

1.5.1

57 files

1.5.0

57 files

1.4.0

57 files

1.3.1

57 files

1.3.0

57 files

1.2.0

49 files

1.1.1

49 files

1.1.0

49 files

1.0.0

49 files

0.4.0

49 files

0.3.0

49 files

0.2.0

49 files

0.1.1

49 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page