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.

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, IncrementalParser — encoding sniffing and source positions
Query find/find_all, CSS select/select_one, XPath xpath/xpath_one
Serialize serialize/encode with an Html config (Formatter escaping, Indent/Minify whitespace)
Minify JS minify_js with a JSMinify config, and Minify(minify_js=...) to minify inline <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)
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)
Build / edit Element, E/ElementMaker, unwrap/wrap/decompose/replace_with and live attrs
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 pandas, markupsafe, BeautifulSoup, lxml, html5lib, the standard library, and 20+ other libraries, 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.0.0.tar.gz (1.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.0.0-cp315-cp315t-win_amd64.whl (724.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-1.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl (884.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl (860.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (877.7 kB view details)

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

turbohtml-1.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (849.9 kB view details)

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

turbohtml-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl (779.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-1.0.0-cp315-cp315-win_amd64.whl (718.6 kB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-1.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (880.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (861.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.5 kB view details)

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

turbohtml-1.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (851.8 kB view details)

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

turbohtml-1.0.0-cp315-cp315-macosx_11_0_arm64.whl (772.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-1.0.0-cp314-cp314t-win_amd64.whl (724.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (883.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (861.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (877.2 kB view details)

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

turbohtml-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (850.3 kB view details)

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

turbohtml-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (779.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-1.0.0-cp314-cp314-win_amd64.whl (718.5 kB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (880.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (861.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.7 kB view details)

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

turbohtml-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (852.1 kB view details)

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

turbohtml-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (772.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-1.0.0-cp313-cp313-win_amd64.whl (703.5 kB view details)

Uploaded CPython 3.13Windows x86-64

turbohtml-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (882.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (861.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.4 kB view details)

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

turbohtml-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (851.5 kB view details)

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

turbohtml-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (772.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-1.0.0-cp312-cp312-win_amd64.whl (703.4 kB view details)

Uploaded CPython 3.12Windows x86-64

turbohtml-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (882.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (862.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (878.6 kB view details)

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

turbohtml-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (851.9 kB view details)

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

turbohtml-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (772.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

turbohtml-1.0.0-cp311-cp311-win_amd64.whl (702.3 kB view details)

Uploaded CPython 3.11Windows x86-64

turbohtml-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (879.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (860.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (876.5 kB view details)

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

turbohtml-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (853.1 kB view details)

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

turbohtml-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (772.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

turbohtml-1.0.0-cp310-cp310-win_amd64.whl (702.3 kB view details)

Uploaded CPython 3.10Windows x86-64

turbohtml-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (876.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

turbohtml-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (858.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (876.4 kB view details)

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

turbohtml-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (849.7 kB view details)

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

turbohtml-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (772.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-1.0.0.tar.gz
Algorithm Hash digest
SHA256 7d70940278adbfe9bfc2c1df3b1dd249ab0b7441b1e0dca90bb49a73675a76ac
MD5 c8f835402fac03a614476eccaebf04d1
BLAKE2b-256 8aa752bd96ebe39a767b11e6841fb3df1dab646e7a4c1e5a41e92c250081b2b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 724.1 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.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ea0fcc3d13a7fe4c00240407059d3ee2241f6894a4cbec91a6152cece940d06e
MD5 17b3cbc30b53f29d9191d391f96e461b
BLAKE2b-256 a580e25911bcb0aa16455069aaa575caa0d8801f70fcd1a4d54c88d2aff655d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebe0b301a193b2dc5f60c60c15fad36f316f452aef320750c35c118799c18120
MD5 069b917fee8977bf87867bda87ab294b
BLAKE2b-256 d2a5fcb24565dd5494780546129efe925423a060acd0cd717675048a6bc8b575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 345c582240e80bf379a96f89982e084d1a11ba4d23fa0409f68d5f3e50f1e0be
MD5 9382d206779a171613d569f2555af21c
BLAKE2b-256 c3a7a12cb9ee55ca36627ea8e4ede9293ce9a539d9e18bc78b22d47b170f34e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32cc65ef72b2c1450220cea91adebbe45acdcbdc2171d7122d6e45e6cb94f3b1
MD5 fdab0ae5fc9ce9d35e0d3b266e7f3b59
BLAKE2b-256 19185abdc40959cc750fb452b0f490a09818f74cd2cf2aca93b11720330a796f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc930612a29a4172982ad4f7bf20c661c18596744a0dd4e9eb68d22cd2f74502
MD5 1bdfd47deee3add21bdf5fa11fa24380
BLAKE2b-256 660f5d21ebe1fd629f52f6b010e40562d937d06271f8dbc1fc7de7862fd440ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81473d75b138a67b4222ac320ee4b7eb91715888f5de0e49f4e39685c4bfb04b
MD5 b2ba0edb2b02379e5c9412b7426951bb
BLAKE2b-256 3b9d48975c8ef7d8299b890bcd446487a021133345851928189ec536ec8a131e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 718.6 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.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e9cf5733afe23be3bf1af0c900b6be6f7b3b673b7f2e3a959ff07667d9c9e561
MD5 00584604904ef7f1694ca005636a6235
BLAKE2b-256 d721fe906d05b0f2efaee9348be62c5fcdcb10f8bf98cc7dae4a8c049727578c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3b260e698409c20a767cf948d42d8678c352101ba752866c7b50dcf7951682e
MD5 58427985eab4dca044cdd4b08a53c3fb
BLAKE2b-256 b0cc52a74cc0658d06a4d36df04233cf7419a11a8bc3e6bfa0b4ad0e50aef716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed092f9458297d8bf92fdfce064fdbda8314595d6442ad55f35733206783a367
MD5 202c86a4d0287f87ee10c3b0218f1723
BLAKE2b-256 28b2f4787bab9fe7a12e17c84d84b582a52c214757c8170dc14c75e9b0ae15c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25476bd478030f42056694d934182f3bad8ce4b385a9f0276a22e16f26f29972
MD5 b1ec140eeed0db10504dd36e9036c670
BLAKE2b-256 cdc90ce5d5f29e284b8bc6c09fa08cfa4102ce0bbb1826925d275c1aee972bf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c6ccfebc74094aef15f5460ef559e77cc3b89791d6b55b352353e229472c543
MD5 f8dda151e3f0a7d179217597b0aede24
BLAKE2b-256 80bea1d0a74b71d250616a0c611af8741c21084b9c6173423ea5a4c211761b44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 769b8ef3c6b0781e7f5aff3f785eb2144478ab41d3a2f89b77448428071f9fb4
MD5 1ab3e36942ad8cffc56398f632718f80
BLAKE2b-256 dfe32648ec29c77c90c4e1ba437b3f78b835d851d006a0a53acc36eecf278a66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 724.2 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.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 48413a65d8cdaa2dfa3f53dc92005ea7dbeed164e2152890545555ce41738911
MD5 84c0a3426fa82c153bfa12492beea014
BLAKE2b-256 18f54229fbb3f66808c7d661bc6d39ed73ce33ac3464f45c274caf588d1c9eff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4501490d300757ba198f611bb73e7dd9b8769a102697faf2caaf7bbccaaba74c
MD5 703b98a5789c245dc0ce51a028d17d65
BLAKE2b-256 ac14a9845547e58b89af34e485a01eb8d83ba8896f90636a33adb37735dce7c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e612e8219942e0ec7a374281efc7c4fcc0327f67db9dc8f3e7e006f9c76f1c44
MD5 26816f5050e28eeb5b9a907b258e285e
BLAKE2b-256 15713ea0180e00685d5f87dbfd6ca57f7561a7a5d9c28e41f0f32b9aee28cbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6909796ffc821027e8c2dbf965fe9e823cc1acd03ecdfcc0253d3a9d063e5bf4
MD5 45ddfaa933f3c27c2fac9f9eb31f5d1f
BLAKE2b-256 0807955354bf2e72fa91b0ed071098e24fb097566c27270bdda76edd1a4a6ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52c5fd6d8a209dc7d210f64a4edab3b0798dfe79e8eec93f49215738fca4744e
MD5 9706c66108b33881b0c02c5e8fefaa05
BLAKE2b-256 77c7700975c24e216b72857ffbc446679b2e65642b50c6008eb732f193015cb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 517059085b4e4053200389be83a974386bce6a4237796a75ec70517302c45c80
MD5 71079d5cd781f2b88abeafb43438a6c3
BLAKE2b-256 b4648de0bf9de4be91c8aaa46315dc274a9adc5bb38bd9acf0ae1002c4f30920

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 718.5 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.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 10e6a37cdb0a9833745cf5b41e044194012bd332b3dfb97c9caf822468891e07
MD5 7c36e7ae4bb5b59d765255fef9d75cc7
BLAKE2b-256 6150818090e903d799c1e05c11407fbaf7fc27823e1da4fa0d1482411905427d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3130f83d0092138d3f8ebdb987b34e5021186fdad05f989907798cada9c8fe6
MD5 531d1480ddff56b3fe663156601a3d10
BLAKE2b-256 c3b2ac546d68786f89fd6b4388322c512049ab0017c63274a0d6b6c3c55c5d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 084b4d092cf3766a90650e9ffd2c644c9255da2aa0962be8d2b4c84660ba2095
MD5 952cff48cf383b275338b0588f4b9078
BLAKE2b-256 b088465d964cbd9920b62cd779c504ad049739a00b76f77832bbad9f12fe8160

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b5b1082ec9839cdb59bb638373cf24346e9592a780ee697d98ae94660b2bb80
MD5 e883a5dd0f9de701511f9d4a58abea63
BLAKE2b-256 571adbb9e0211737c14a1a3ece3571f8880948572f8619e5366418ac430351d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b17a201aacbadddc599d01867c0534d3e662e83353080b9e34087fa72c2c3f6a
MD5 0871c6a03473a5f1ef0732d1701a0946
BLAKE2b-256 b5549125b53a0c080c2fdd9ab0c7e8a8ab4685239e7b0ebab5e1f1eefe1d6ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffd9fe936ffe328c7c1e50e72a19d1dc9c1d1e54637134181e740a8b81afd536
MD5 4394d8571bb239c9954a659de7de650a
BLAKE2b-256 3d4a12563f0cd24fd5f08b49aee03e1da4b50aed98b9a798ce5b80eef2fa16d8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for turbohtml-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 32c52289b23095f1488d02fdf28c1e53e6c7a11e8f558be5ee5d586a6f5473aa
MD5 aa11e3dbbb5e037269332c8f42e4aaa6
BLAKE2b-256 c3319753e4cd412429055b955ca85eeb70e49736c1fa9db3adb2ca2d2723c672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d670351802af80d4f8876a3551facb0ba468dec44e6decfba7818784e306ddd
MD5 02f726df731cfc29ba0c645f571a52a8
BLAKE2b-256 a931df09f814a4859053754c4ddd41151f4694326b0d97b646c89b22bc00becb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20401e013361ee4d5c064a89202f66a31db244865b946420cedb2c4e67ef6f76
MD5 0a55334f0a1cbc4c7315e84cccd472dd
BLAKE2b-256 ab3dcf1d026c48c8c3c7db5da0c61c3b881d7f7be00f8a89f2ef8bafcb69823a

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9115e7c5057100e8ef11f7331092d0143e58015701e33607809cc7e27b5b8b16
MD5 ab1f04ce09fe23fc39dfed776d67b865
BLAKE2b-256 13cce65adf2360a633f2f8d3092a27745e0ed5a661f48e70edcb4369b23c886b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dfc9a02c81548c26da5166552f7c656d993d9b50136cc8a05e409c6462587e44
MD5 4e898a2525ce2ed1a31a57d506a15f9c
BLAKE2b-256 f61a4a3567a9e85bbc826a7ab67a2c4cd4049e61cf48645709e1782f722a6899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee1764d6a73e2e0658b841cde4ef6f45ddb491c8c86403182a847f1082c0f0ee
MD5 9f0bbf1ea48b09415bda378c23cb74ae
BLAKE2b-256 ecc9b3362b3a02a5ca539c2af6394b3cbe323553758799b0d54737445af8b426

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 703.4 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.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 aa6cb9860bb1f44bbe8d87a05c2d5f734b4caad9827cef9b0f4c9826d1c968fb
MD5 9e24ca561b6430739363d92b89c0a08f
BLAKE2b-256 fc5fd8f87c37354d1a87046dd8f30f8de190377342563496209e36e4de3e56bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fd5a59720e50ebbfdfa8fa4b1a92de1ef132c8bc3df913e2ac91c45a1a260ff
MD5 27e21a75e4d80d7464db3d00c3606098
BLAKE2b-256 8e502ec602f9cb8ceec2dd52a6c6d8812f9997dc7ae7c11c911fd933e8966547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cfc1d7c43ba85a211cf074a9cf4b339dda6d68549340f0b33f484b7f2f8ede26
MD5 d9ca28c7a65b4a4ae19bc5efd13c977d
BLAKE2b-256 01881407219f370e2586247ce6560b4cd660df27bd48a44b7f37ff28496ba60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d11deedaf62bdb66cc705062d26f714d645d063af0b662b19c89858d0121303f
MD5 e81c14617163ec11bbb4496297564917
BLAKE2b-256 537afe1e15202ee9f68f9f637f1a7badffd727f6e6ab848220994df8ad8d37dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c5f75c2f59c3bba6d5754e271f886729f9ca6396c76b5256085203038e3934d
MD5 1946ec68fc7460dc0ad5c5b1755cdbad
BLAKE2b-256 d1851b52b2345c7d968c42bed71526e2fd4edef085e401f56f953c923001334e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37ea8f37d8ce41a644b671e9683c16facf82d13726297cdc52c9e2ac296c3094
MD5 7e0c2f6936b4357faeae6e0ad89a4366
BLAKE2b-256 9149ef0fcfa1a8605be795c9080add6a6e86f1a8fda35deaf557ddcd119fad3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 702.3 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.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b8adf74e9d2b1d0798e7e8eee450bdbb34d3d9455f90ddc65a9441cc7f7983a
MD5 0f6e04359fb888c434fd5a44003a9ea6
BLAKE2b-256 be3ce19ae9e81e11f9cb2f82362ae2a19674e3a65c6745b49234d800566430a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500f58dab80512fed998c00568f8b41e3a8a4799427708f751e6c3fed90145a6
MD5 75c01f2e09b2d3e33b674005e7033465
BLAKE2b-256 5ffe3e8e80271a346ba47ea541f2c5bab0f21ab8f9961f58f79038be79737e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e8f5388d8689810e98c4660e6b485cab457a3bb47d60363ab230d560608a68a
MD5 b9afb3fd0cdba7216a4707c1a752ed81
BLAKE2b-256 eee341d2a4569544cda83e0a5402e3f7da64fc454f799fe19bd350f211b6758c

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1a70c625d212e8f5177b1092d8af74ac4c38f1f50a1110dd46031830c9a7530
MD5 ff9781dd2d709ebe1c8021e1d0b38259
BLAKE2b-256 36054bc3d8501cfb45d196cd2208e10c714de52dc850e6342104c5cd958e4c9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 281cb700aa3abacc1027fdc3070f106d72f5781ae2c2e9b161299e43d4428fa2
MD5 72e16b09bdf1d5813f37691d69e77eb5
BLAKE2b-256 5a082f8a993bf4670f3f81c82edb4cf3737f3b5a84a8f5929ec1a21d848295bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 013bb6e1fbd3ce826cc8eda5952d14acfe2f320d5b099ef2abc135a10be6e493
MD5 b33a6b5b2679e0633e0d3a7df676fcd6
BLAKE2b-256 5df168b32f714e49ea58310020a811c502c4b1223478818bebfe63445b7a14a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: turbohtml-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 702.3 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.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dcf3e2c5ec2b6098353f7b71cdee689a43097d66f731cdb2f7f215c826a5fc92
MD5 8ecb028145bcfbfefe9f22d87b160c7e
BLAKE2b-256 e45bd8b12f698a51d75180fcd9be41135536d4d92759c35b8135903af5b9d003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc237d00acabbe6ae39b86665af05e2b4c15b40529642cb818d0ba186dce58f2
MD5 2eb51e3cd1966ae6e646b9499c220d37
BLAKE2b-256 52921a7f03ab593cae3e7660dd082894332145eeb9e940fbd3edb91edbaa9377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31effb1beae0e36455832f19935baca0f81a9dfae2bab73a54cef7b9f0a46db5
MD5 e390c2b0ac131d55db879428a41af2cb
BLAKE2b-256 70c1ceb6f5bc588e80ddf959fdf4b22c5331bf742f16e25c4e6de770c8e6eea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for turbohtml-1.0.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.0.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.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 daf032935017cbcb9dac8987a64d6a7f0e3a49e7fedf20a0cc3d0ebf53dbaca7
MD5 bd83a7c09e9fee6eb1daf77b02c7a647
BLAKE2b-256 a2004035952ccd1e468eba65ee2edfcc92f8df5392e9011ace10d4202a74fb27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0107ddc3732d92c08a9af896bbf4a03f155f6e73e64aefda8ff2f7c413b9b41b
MD5 1f1407f7c673f609c6f20825d5b91f69
BLAKE2b-256 11217f629933e90c15728a31d7597f0b280ac226884dbc37c033eff15402ad47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for turbohtml-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a43652fe44d0d8293678b504b20ba03c95ca9f7212338fe1217b050fbae780d
MD5 986b5b8b02fbb23228d98633e7bc5bb0
BLAKE2b-256 3760b8a8dffd74f2e8c45db9a0248cfe42ee1a085d85c9a5746cd80a94e7e789

See more details on using hashes here.

Provenance

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