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. turbohtml escapes and unescapes HTML to match the standard library byte for byte, tokenizes markup with a WHATWG-conformant streaming tokenizer, and parses whole documents into a navigable element tree you query with CSS selectors and serialize back to conformant HTML. Each operation runs several times faster than its pure-Python counterpart and supports the free-threaded build.

Install

$ pip install turbohtml

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

Usage

Escape text before interpolating it into HTML so it cannot break out of its context:

>>> import turbohtml
>>> turbohtml.escape('<a href="?x=1&y=2">Tom & Jerry</a>')
'&lt;a href=&quot;?x=1&amp;y=2&quot;&gt;Tom &amp; Jerry&lt;/a&gt;'

Inside a text node the quotes are safe, so pass quote=False to keep the output smaller:

>>> turbohtml.escape('He said "hi" & left', quote=False)
'He said "hi" &amp; left'

Turn HTML character references back into text, following the full HTML5 rules (named, numeric, and longest-match references that omit the trailing semicolon):

>>> turbohtml.unescape("caf&eacute; &amp; r&eacute;sum&eacute; &#127881;")
'café & résumé 🎉'

escape and unescape reproduce html.escape and html.unescape exactly, so turbohtml is a drop-in replacement on hot paths.

Tokenize markup into a stream of tokens that follows the WHATWG tokenization algorithm:

>>> for token in turbohtml.tokenize('<p class="x">Tom &amp; Jerry</p>'):
...     print(token.type.name, token.tag or token.data, token.attrs)
START_TAG p [('class', 'x')]
TEXT Tom & Jerry None
END_TAG p []

For incremental input, Tokenizer.feed() returns the tokens completed by each chunk and close() flushes the rest:

>>> tokenizer = turbohtml.Tokenizer()
>>> [token.tag for token in tokenizer.feed("<div><sp")]
['div']
>>> [token.tag for token in tokenizer.feed("an>")]
['span']
>>> list(tokenizer.close())
[]

Parse a whole document into a tree and walk it with find, find_all, and the navigation accessors:

>>> doc = turbohtml.parse('<ul><li>one<li>two</ul>')
>>> [li.text for li in doc.find_all('li')]
['one', 'two']
>>> doc.find('ul').children[0].tag
'li'

Query with a CSS selector, and serialize a node back to HTML with the escaping you choose:

>>> from turbohtml import Formatter
>>> doc = turbohtml.parse('<article><h1>Tea</h1><p class=note>café &amp; cake</p></article>')
>>> doc.select_one('p.note').text
'café & cake'
>>> doc.select_one('p').serialize(formatter=Formatter.NAMED_ENTITIES)
'<p class="note">caf&eacute; &amp; cake</p>'

Pass bytes to sniff the encoding the WHATWG way (byte-order mark, then a <meta> declaration):

>>> doc = turbohtml.parse(b'<meta charset="iso-8859-2"><p>\xe1</p>')
>>> doc.encoding, doc.find('p').text
('iso-8859-2', 'á')

Parse a fragment as the contents of a context element, the way innerHTML does:

>>> cell = turbohtml.parse_fragment('<td>data', context='tr')
>>> cell.tag, cell.text
('tr', 'data')

Performance

turbohtml's C core makes every operation several times faster than its pure-Python counterpart, and it leads the C libraries on every read-path benchmark too. Measured with pyperf on an Apple M4:

  • escape and unescape match the standard library byte for byte while running several times faster, up to 22× on no-op text and 13× on entity-dense input.
  • tokenize is 9–16× faster than html.parser wherever markup appears.
  • parse builds a full WHATWG tree 2–5× faster than the C parsers lxml and selectolax, and 30–80× faster than the pure-Python BeautifulSoup and html5lib.
  • find_all and CSS select outrun lxml's C XPath and cssselect at every size (2–40×) and BeautifulSoup by 100×, and serialization is the fastest of the four.

See the performance page for the full sectioned tables and the methodology.

Documentation

Full documentation, including tutorials, how-to 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-0.3.0.tar.gz (207.5 kB view details)

Uploaded Source

Built Distributions

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

turbohtml-0.3.0-cp315-cp315t-win_amd64.whl (120.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

turbohtml-0.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl (168.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl (163.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (167.8 kB view details)

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

turbohtml-0.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (162.1 kB view details)

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

turbohtml-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

turbohtml-0.3.0-cp315-cp315-win_amd64.whl (119.7 kB view details)

Uploaded CPython 3.15Windows x86-64

turbohtml-0.3.0-cp315-cp315-musllinux_1_2_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp315-cp315-musllinux_1_2_aarch64.whl (161.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (166.6 kB view details)

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

turbohtml-0.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.1 kB view details)

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

turbohtml-0.3.0-cp315-cp315-macosx_11_0_arm64.whl (126.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

turbohtml-0.3.0-cp314-cp314t-win_amd64.whl (121.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

turbohtml-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (162.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (167.3 kB view details)

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

turbohtml-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (161.5 kB view details)

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

turbohtml-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (128.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

turbohtml-0.3.0-cp314-cp314-win_amd64.whl (119.7 kB view details)

Uploaded CPython 3.14Windows x86-64

turbohtml-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (161.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (166.6 kB view details)

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

turbohtml-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.1 kB view details)

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

turbohtml-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (126.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

turbohtml-0.3.0-cp313-cp313-win_amd64.whl (117.1 kB view details)

Uploaded CPython 3.13Windows x86-64

turbohtml-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (161.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (166.6 kB view details)

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

turbohtml-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (159.8 kB view details)

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

turbohtml-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (126.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

turbohtml-0.3.0-cp312-cp312-win_amd64.whl (117.1 kB view details)

Uploaded CPython 3.12Windows x86-64

turbohtml-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (167.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (161.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (166.6 kB view details)

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

turbohtml-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (159.9 kB view details)

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

turbohtml-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (126.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

turbohtml-0.3.0-cp311-cp311-win_amd64.whl (116.8 kB view details)

Uploaded CPython 3.11Windows x86-64

turbohtml-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (167.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (161.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (166.5 kB view details)

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

turbohtml-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.1 kB view details)

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

turbohtml-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (126.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

turbohtml-0.3.0-cp310-cp310-win_amd64.whl (116.9 kB view details)

Uploaded CPython 3.10Windows x86-64

turbohtml-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (167.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

turbohtml-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (161.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

turbohtml-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (166.4 kB view details)

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

turbohtml-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.2 kB view details)

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

turbohtml-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (126.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for turbohtml-0.3.0.tar.gz
Algorithm Hash digest
SHA256 6c0d701fb85dcb69a33df6164214c6afcb34933e1c3db8fbc3d8b29b13eff559
MD5 334f03603f18132381d6951335c531d6
BLAKE2b-256 12fdefd7995398a447a5d3433db215d351da220fdb1d1df3eceafb56c1b25145

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 120.9 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-0.3.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 98f524fd6421d326bf662e2e59d08dc9de34ee0bf497222e6f3b48f1df041b8b
MD5 b9dc057df697876c03ec8e14273965ea
BLAKE2b-256 793349b78c3ac5cd72da00e29fb1b7938dda9c667ffe0f7eb9084fc72e9e8910

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 754c398f9bde10647298833b420851d2b7041565e491e1495f83d97d4125fafc
MD5 98e97b0554b24f8e1d3e88dbdde6cd18
BLAKE2b-256 d170c25c7b874f0cd6b2bf07fb131b5714e949a68515053834b7f1a0672a455d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9971373b00ec7445c26964e1b5371f0ed26a57cfae11d985e98f4b9920825655
MD5 f6fb2387afbe7c0f8528ddb90e8b79ed
BLAKE2b-256 51a3126c7da6ce2a6acfcdf4ea0b8f2851730867888ad4226f628f49776aaaae

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2c477181c9616541f35fcdc5f8e4843a46a809ce2ac802d00063a25e74a57ea
MD5 60c26fd756a80b78815a5b3059eac763
BLAKE2b-256 4feacc928789c21c9b53e4cead9bfbcfcaa32c2ced033cc574ee79bc84953016

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a1824b2f55b51249d9a4a5592838c7b50c8ea715a3f5facb06d62e4f64a8199
MD5 7cf7e0c684499de9a8f1b0adca85bf94
BLAKE2b-256 c6c84682393494e4f25121e48239f9c830743cc606fed2ec85bfb89a2f47ccdd

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6a6de067513b5b3dff110827db3a0a6c7006063942f80dcd9dae5cfaf6809d
MD5 1a9c901d98fdca3faa93330aee9126c3
BLAKE2b-256 2180dc4a94fcace19240f0439e03e9523dd88bb2c96887b141d4a3fa3eb8cb0a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 119.7 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-0.3.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 aaaee1917d1ca1df5119ff716205e27548924caec3eacc4def3d4ea0cb034430
MD5 65b8c2c12beb2cbee33b5bbea23bb4d0
BLAKE2b-256 a6cb38b397e900e1354c5a13fe1d70d7a00e1ee3dfe18d69a0d0d6be4db94cb8

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78298624235e750b909dc403ec4728e3ec27d06ed9aac41355a4d041b8273c81
MD5 c68a56bcb39572cd5ff12981360d0bed
BLAKE2b-256 5fc8db149740194b007b35d6e56d8a3de3dd0ad33fef412e5d45b328ce8e4f55

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07e6a59bb5d499d7e7faf81834d0c113ac895d9b2f55872430bed98c3e381966
MD5 4fafe15576d5faa1c62381e93b9ac66c
BLAKE2b-256 75997c4670c6d75faf6eabb7fa81249f96a705c716b076e5f4a04d3233cdea9e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74bd3c4daf3db09b18a59be90de1d568d0d56ae04fcc10b4305d6042820e8fe0
MD5 9af2176fd7756a73e813436d57ae6a1b
BLAKE2b-256 4497e6272d48bebcdce64420169476726a8d141586979892431111b872f895b2

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e60751d6c6341759b429c03bb8ae5f53ddef02bd406352a0a8b4f1b848499ac
MD5 f9c7bc0bb2490e1aec218b7af5517162
BLAKE2b-256 bdd149898d98e35d4c3a083be6997ac7f9addd01a7627efbbcc8e3211e00fcfc

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2920992e9dff1c5bb8d41576f5d79abd220731b2643217aac1697e1e8764074
MD5 b9d6129610fa97abae0352bda540d708
BLAKE2b-256 422b3d2f02d5e386b3bb88f17971d18bd57722147dbacf5ae56f1a3dfc1eea65

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 121.0 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-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 faddb8f53ff7a4cf3e99c9d046378524422330be8ec86a4a9b6473c58852fde1
MD5 18315b8819b198397c60d02349f56b0d
BLAKE2b-256 b2abdabbee91652b81c7aa78bb7acc038e611e27c556994b21c04368b57e80d7

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e330b32f2b22deb792f2f0b45a21325a37cfe3decfdb172109c33cbff1dc84d
MD5 7a01e8c4f16474415b0ff8e9840ae72b
BLAKE2b-256 57b8126412f1ca24b729308e197399757548d9afd199ac1b6e67dbc305b76ff8

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 164f12237484161d9dfc44f7feedbcc3528fd3ff4f2f426ab8cbfe3158d39635
MD5 fe81b309873cf8137a8696338908ae5f
BLAKE2b-256 87199f40390fa4ba747419e67c2d9122c59f42bd25d3c641647e4b39e795604c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f036773b57141a51cdbf4dd61dd42d3ff718d3bb9ab95c563b3ad398572b9491
MD5 ec7145b542df21e659a13b5eaf8036ce
BLAKE2b-256 e060bfa2c2988dd6dd9c8f020cf162f48216b9d7ab896e2e914fa2ba0d1fed95

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e90c34b12b40e0dfc45237e31fb53c3c536b954eea2ecd32852925e64bf3eb72
MD5 5360fc48915963dab3715d08f6d9fc21
BLAKE2b-256 a1155a1ab58ca0270b34bc9bd637ffad5a5cef6d2dba4d2ea4c921dfb14592f3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8812b51a97b7183f9ec99e12fd5a3e042e730e240dbf6cc391ec3b7104444c37
MD5 6bc36a389c376cff89b83766487783ca
BLAKE2b-256 0e8b7fd6808da9a7c165f2a03b8d989339c82c5f5572b35acc1f488304f1263f

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 119.7 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-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45565447bdab00da9e96193fd4d621d846f1d4cb8c009c7dde4f7611070ca407
MD5 138882a15b4cdc903621c855e773684b
BLAKE2b-256 a3523121547569fdd0a0a393e5a9b17a83d23d6c2a7f5058cc3675ac069a6101

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 766f0c9735ac5b8e0d91c5bb0aad193e18752cdb8cc9fcb499d855df79d38195
MD5 ae9643b14c3fac34bd63c82dab079fa7
BLAKE2b-256 91380ead42dc6a28c46be3eb34a992863ed3f60c5b4d744f943ea14f9c63bb31

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 034a5558484186526c245ef71c3772be54fb5d6627decb5bfc991a206595cfea
MD5 cb6c76ec3f7727b44a2b22d4f0369332
BLAKE2b-256 af0a1df0e245ec3ad0c957186f6ad83942c3c9db8e3afb58057e514fd7107a78

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1970a0dd769cff58e8e4934f1536647ab3f8c088cad0d68aceeb6af16bfe692
MD5 b2490e7ff4e789d38bf01b4588bca083
BLAKE2b-256 81b6c36dc30c4d40a0abc817ff9f443730839022223effa8f3ffe962e1d9eec4

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 247e011cf010e3cbac796a0ffd7a7341ee10b4dc16c30f571950a28490c6e770
MD5 28415c265401340a6e1fcaf1c699abe6
BLAKE2b-256 6e80d5ae3caec8c2bafc524f3d5db43445bc9adee89e433345ab9db90d1f49cc

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7995f8957dce5639d37bfa6d33cbba561a7bf94cb9b9e983cefe8e61ba9d3947
MD5 bbed3bb9e36f794b78d3070dc001c39e
BLAKE2b-256 65d5534fb6333b7882371e842dabfd7be01bb65fc7f04a747a4ff98a322920d3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 117.1 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-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 32172ab33c2ebf88a5bbe10212837126a81b5fe2b58b8874736ec6454ea86208
MD5 d6b891f7aa0bbc05e11f3f711f99aaef
BLAKE2b-256 0f5bd81b5d543fe3e7a925de67b3b166b1313980d80ccb8874fec92c0bcb5e9c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea14142364a7c0b0b9dd84384d30793111e2b3d4f0a14263baf156b3e588806e
MD5 25b2216e83b1ce261b0980f5f7321d94
BLAKE2b-256 9067e5af5945723a686bc01616979bef32fffd22fe0c1704cc1c3536be1c3e85

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d009805806382ecaab25297ba37d7d308b3f881d5aea8b4a64e8369dddd0320
MD5 f338c59f7924ebb46d2b856de2e5d6b2
BLAKE2b-256 eea7306fc903aa13fe4daeab41d6912b0084f23043716b45f24edb6f6d0259eb

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 287e5e3fc1734996e7d351a5bbd097d61c2323ebca5ba484b474cafe68c85cac
MD5 fb895c340d68381d7445dfe6dabebc5e
BLAKE2b-256 f1e02a1366f99fa0bbb3061a9f2759095b214544dc74f993660ba45da68eb095

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caa47e50c1cbdf15bb1b754f7dcb0f37781499387dc34f4a3fcb598423a4b84d
MD5 d0d15f0991353c5fa2101d0baaca0e22
BLAKE2b-256 53a5571afc6325ad868d1c50c87216c9923ced40b8f2ea581a837d2f751f1365

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1d9b740c57033bfacb459be51f312863de96906ba7a3742d6482a91befd2d6b
MD5 a2b43a8a1cd0721cf6d3b78d527daf1f
BLAKE2b-256 b00bc649676b5ec173cc399ffd7ef240316def551fe8d9d82f2f52f564228712

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 117.1 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-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f597bce6a5d203c141b08faf45e51ddbd152a2fc15fccf9a4d54ee0126b616d1
MD5 ba0902677493b63bee3a44890e10f836
BLAKE2b-256 2c58131f5b7f2b83ca9ff2426ca7a1b608c3cbf890a1509c6c4d9d09b2a572ac

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d47ae6bc47c12eaccbe3fb8aa4f2cdee772001c59bed0a794081b619a8c117f0
MD5 2fd6d62ac7b3eaa24ee84d4dadd0d970
BLAKE2b-256 2faafdafbb1936245b7d8d6054fd0121ca8e0189c57fe37464174b948143fd36

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02199784f1363d3e39e50a79d4f1601d6a87812be4cd4f7b20892ace88910713
MD5 8ae749152f2bf68f60fd1b4e636ae0b7
BLAKE2b-256 2aef6aad31cb7621362da0a67f89e9f377730f11c5f43bcc6a196182c5fcd1f6

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f09de0a65c3111aa0ebb02b4795ca7d0c7daf25ea0a2a5f9a5e115d154fb8f79
MD5 cfa981c93c433ad5f8ea3ec588f63b0d
BLAKE2b-256 11913a614b6b645a4c26533ee3306ce3005502768501638378b7fddda3e7d022

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b6152893fe2f0c8d54c783fdcfdfa4e8f7a6216057d36e38f6c60653a029adf
MD5 021625b6b40c5b0c9222c1282262578b
BLAKE2b-256 1b5a46c53d23c04fff7c4cf8779138729e2da2bfaa01dd933192cc9d0f5ecf97

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e82ef1b51898b280a8744aea1fa91edbf7b6beb2bb35fbc03c7c630f35b11d3
MD5 811a84e51d393d363918218f59e5bd51
BLAKE2b-256 e44365076f9fab96f174c54ad692be57728ab37d44499f43b4312c46527dc20a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

  • Download URL: turbohtml-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 116.8 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-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c19b1e49f38da00b78ec09fe785f7b99c1fe886cbefe896aa21a02052ed4446d
MD5 500fa32e6f1d91830356a9bd68d9c548
BLAKE2b-256 85575f87667503c2ae8161b6a9c7620584b34d61db8040aaf849957718d4acbc

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33c783e98def2903ed990a917e27d4d10f26f407f90f562b85676c9e5642aaec
MD5 b5bf0f1285cec73d58983f627f8b3824
BLAKE2b-256 7b85fb0d6fbfac264ac2c3aa6e03f9ebe91437319861002885ae82c11f92edb9

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddfbac2eba2978721e29d6c9ebea315d1ab91437560ef7c4fd95688629100f27
MD5 cba1a0606236c2a47664f5d667824866
BLAKE2b-256 fc30b1de1a41c3f17f938f042a3593315d1ab47f9deed100e557c7f74c9cf64d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 857852f694c1981ff40cb5ce720bcff4e3705db79d318189c904650687fb75aa
MD5 733744789d9bb030c0c8f37c9a32607d
BLAKE2b-256 e310f069d2ec7b7de8830c11410976c3164a264e3bd3716934e9297d7450f811

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f5d8059cba29dbd93dc777e8f2b84133f54bd661d5ee1d7641a319746fcb1d1
MD5 d706da2e08a29bacaac890b0b4909304
BLAKE2b-256 c3a36f86fc95590d594b3098702688c213d7cfd5f5ee5da1b221ddd1cfe18215

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab22798962a2229435f06dcb9fd22486ef37ebbcdcf290ed0073e43b4652bf85
MD5 6f5ec244bf6ef02fdd388896cf5ccbe2
BLAKE2b-256 274890097ebb64e6be2b87088da41f1a5527ffd3840a22648ee3b524610c947c

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

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

File hashes

Hashes for turbohtml-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2c9f604353ec4c30fffae895b464c975d7527f3ae4401f9255409e6366cd55c4
MD5 bc1c0e9838db933dff96434d31fe5276
BLAKE2b-256 4a86193279a34a4d185fdedea711d926f44f9d100b2254b8011e3d6f53b4b5b5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dce989c315f64df015546b0dfcd9dde77ef0423ff8e9cae40eb94f32637f09c
MD5 345af8c411168d1c233631fa38fc0f14
BLAKE2b-256 baf2032a04c2dc736940f76e73696ddbda738d9d86dc2b59316cb334e317f865

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 188d47824ed1b19d6ff3de24225dfcbcfbd61e57a0a381379709609383f4c5cd
MD5 81b345c2fa99efa905906962934c8287
BLAKE2b-256 e0d927d224e9db5422a8e272122cb5c534b3432446185b9f055861940c281f2b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec5a50fed93ac555838ca9a30566959e5c8c32e77e119c36c658660a67bdb9fb
MD5 64cf03952800242b90c0908505fbb411
BLAKE2b-256 be82243244957e13ea0a557eb529c91cbafcc2dfdfb808cf6c44eee49f91cf65

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bc859302708812376c31d9377601097d9a49a5a515502856ac70ee0ec73b158
MD5 7ae16bad9c1f46190d20b9840d333156
BLAKE2b-256 3cf6f71799c84464579be6e2ce64930b4ea1609f75def40632a9f866500165df

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

File details

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

File metadata

File hashes

Hashes for turbohtml-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09e5bebe4948be4e6762ac1ac62c2513480446fdb1b2d794051c6c77d8297c8a
MD5 7b7032929a7b0413ae5165de97bfb915
BLAKE2b-256 d482512be7ffa3c6f212063d2053a3a5972dcf37149de41f62d2fcdafa4ed6f5

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on tox-dev/turbohtml

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

Supported by

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