Skip to main content

zttp

A sans-IO HTTP parser for Python with a Zig core! ⚡

Test Package version Supported Python versions License


Documentation: https://zttp.marcelotryle.com

Source Code: https://github.com/Kludex/zttp


[!WARNING] zttp is experimental. The API and behaviour may change at any time, and it is not yet ready for production use.

zttp is a sans-IO HTTP parser whose engine is written in Zig. It speaks HTTP/1.1, HTTP/2, and HTTP/3, and it does no I/O of its own: you feed it bytes and pull out events, and you ask it for bytes to send. It never touches a socket, so it works with any I/O you like.

It's the same idea as h11, with a hand-written Zig engine underneath instead of pure Python.

The key features are:

  • Sans-IO: a clean, event-based API. Feed bytes with receive_data, pull Request / Data / EndOfMessage events with next_event. No callbacks, no sockets, no surprises.
  • HTTP/1.1, HTTP/2, and HTTP/3: the same event API for all three, selected with one protocol= argument.
  • Fast: faster than httptools (a C parser) on 13 of 14 benchmark workloads, and roughly 15x the pure-Python alternative.
  • Safe: strict by default. It defends against request smuggling, rejects bare LF line endings, bounds every buffer, and ships in Zig's safety-checked build.
  • Typed: a py.typed package with full type hints.
  • No dependencies: the wheel ships the compiled engine and nothing else.

Requirements

zttp needs CPython 3.10+ and runs on Linux, macOS, and Windows.

Installation

$ pip install zttp

Wheels ship the Zig core already compiled, so there is nothing to build and nothing else to configure. See Installation for building from source.

Example

You play the server: bytes come in, events come out.

import zttp

conn = zttp.Connection(zttp.SERVER)
conn.receive_data(b"GET /path?q=1 HTTP/1.1\r\nHost: example.com\r\n\r\n")

request = conn.next_event()  # Request(...)
request.end_stream           # True: this bodyless request is already complete
conn.next_event()   # NEED_DATA

# Build a response:
conn.send_response(200, [(b"Content-Length", b"5")])
conn.send_data(b"hello")
conn.end_message()
conn.data_to_send()  # b'HTTP/1.1 200 OK\r\nContent-Length: 5\r\n\r\nhello'

The read side yields Request / Response / Data / EndOfMessage, or the NEED_DATA sentinel when more bytes are required. A Request with end_stream=True needs no separate EndOfMessage. The write side serializes a head, body data, and the end of the message, framing the body (Content-Length or chunked) for you.

Feed receive_data whatever you have — a whole message, a fragment, or a single byte — and zttp buffers and resumes. There are no callbacks: you pull events when you are ready. That's what sans-IO means.

One API, three protocols

The protocol= argument selects the wire format; the event API stays the same:

import zttp

h1 = zttp.Connection(zttp.SERVER)                       # HTTP/1.1
h2 = zttp.Connection(zttp.SERVER, protocol=zttp.HTTP2)  # HTTP/2
h3 = zttp.Connection(zttp.SERVER, protocol=zttp.HTTP3)  # HTTP/3

On HTTP/2, one connection multiplexes many requests, so the Request / Response / Data / EndOfMessage events carry a stream_id and you send on a Stream handle. Outbound flow control is handled for you: send_data emits what the peer's window allows and parks the rest until credit arrives.

stream = h2.stream(request.stream_id)
stream.send_response(200, [(b"content-type", b"text/plain")])
stream.send_data(b"Hello, HTTP/2!")
stream.end_message()
h2.data_to_send()  # the HTTP/2 frames to put on the wire

On HTTP/3, the wire is UDP, so you feed whole datagrams with receive_datagram and pull the same events. The QUIC transport underneath (packet protection, loss recovery, congestion control, stream reassembly) is written from scratch in the Zig core. HTTP/3 uses the same stream-scoped send surface as HTTP/2.

h3.receive_datagram(datagram)
h3.next_event()  # the same Request / Data / EndOfMessage, tagged with stream_id

See HTTP/2 and HTTP/3 for the full story, including what each protocol changes and why. HTTP/3 support is experimental: the convenience server constructor creates an ephemeral TLS identity for local use, not a production server identity.

Performance

Against httptools — the C parser uvicorn uses — on the same requests, with both verified to extract identical data:

Workload zttp httptools zttp vs httptools
Simple GET ~1.24M req/s ~1.07M req/s ~1.16x
POST + JSON body ~1.42M req/s ~1.25M req/s ~1.14x

zttp beats httptools on 13 of the benchmark suite's 14 workloads while staying sans-IO and event-based, and is roughly 15x faster than the pure-Python alternative. Run it yourself with ./scripts/bench.

These are parser microbenchmarks, and single-digit-percent edges are close to run-to-run noise — see Performance for the full 14-workload table, the methodology, and the caveats.

Why it is fast

  • A SWAR newline scanner and comptime-built character-class tables in the Zig core, so the hot loops are branch-light array lookups.
  • The body is emitted as a single Data event slicing the parse buffer, rather than copied per callback the way httptools does.
  • The header list is built directly in Zig as list[tuple[bytes, bytes]], with no per-header Python callback.

Correctness & security

The core enforces the framing rules of RFC 9112 §6 against request smuggling: the Content-Length / Transfer-Encoding conflict, duplicate-Content-Length checks, and combining multiple Transfer-Encoding field-lines into one ordered list so chunked must be the sole, final coding. Line endings are strict CRLF by default (bare LF is rejected), chunk-size is strictly 1*HEXDIG, and obsolete line folding is rejected. Header blocks, trailers, and the receive buffer are all bounded by conservative built-in limits so a malicious peer cannot exhaust memory, and the outbound serializer rejects CR/LF/control bytes to prevent response splitting. The build defaults to Zig's safety-checked ReleaseSafe mode. Malformed input raises RemoteProtocolError; misusing the send API raises LocalProtocolError.

The HTTP/2 layer applies the same posture: the per-stream state machine enforces RFC 9113's stream lifecycle, with the exact stream-vs-connection error classification the RFC requires.

The parser has been through two adversarial security audits (a code review and a CVE-driven review against real HTTP-parser CVEs across Node, Go, Python, Rust, and C servers); zig build fuzz runs the adversarial-input net over the core. See THREAT_MODEL.md for what zttp defends against, the exact limits it enforces, and what the integrator is responsible for.

License

This project is licensed under the terms of the BSD-3-Clause license.

Download files

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

Source Distribution

zttp-0.0.24.tar.gz (326.9 kB view details)

Uploaded Source

Built Distributions

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

zttp-0.0.24-cp315-cp315t-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

zttp-0.0.24-cp315-cp315t-musllinux_1_2_x86_64.whl (425.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

zttp-0.0.24-cp315-cp315t-musllinux_1_2_aarch64.whl (397.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

zttp-0.0.24-cp315-cp315t-manylinux_2_28_x86_64.whl (427.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp315-cp315t-manylinux_2_28_aarch64.whl (398.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp315-cp315t-macosx_11_0_x86_64.whl (402.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ x86-64

zttp-0.0.24-cp315-cp315t-macosx_11_0_arm64.whl (357.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

zttp-0.0.24-cp315-cp315-win_amd64.whl (486.1 kB view details)

Uploaded CPython 3.15Windows x86-64

zttp-0.0.24-cp315-cp315-musllinux_1_2_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

zttp-0.0.24-cp315-cp315-musllinux_1_2_aarch64.whl (398.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

zttp-0.0.24-cp315-cp315-manylinux_2_28_x86_64.whl (428.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp315-cp315-manylinux_2_28_aarch64.whl (399.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp315-cp315-macosx_11_0_x86_64.whl (404.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ x86-64

zttp-0.0.24-cp315-cp315-macosx_11_0_arm64.whl (359.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

zttp-0.0.24-cp314-cp314t-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

zttp-0.0.24-cp314-cp314t-musllinux_1_2_x86_64.whl (425.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zttp-0.0.24-cp314-cp314t-musllinux_1_2_aarch64.whl (397.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zttp-0.0.24-cp314-cp314t-manylinux_2_28_x86_64.whl (427.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp314-cp314t-manylinux_2_28_aarch64.whl (398.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp314-cp314t-macosx_11_0_x86_64.whl (402.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zttp-0.0.24-cp314-cp314t-macosx_11_0_arm64.whl (357.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zttp-0.0.24-cp314-cp314-win_amd64.whl (486.1 kB view details)

Uploaded CPython 3.14Windows x86-64

zttp-0.0.24-cp314-cp314-musllinux_1_2_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zttp-0.0.24-cp314-cp314-musllinux_1_2_aarch64.whl (398.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zttp-0.0.24-cp314-cp314-manylinux_2_28_x86_64.whl (428.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp314-cp314-manylinux_2_28_aarch64.whl (399.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp314-cp314-macosx_11_0_x86_64.whl (404.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zttp-0.0.24-cp314-cp314-macosx_11_0_arm64.whl (359.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zttp-0.0.24-cp313-cp313-win_amd64.whl (470.7 kB view details)

Uploaded CPython 3.13Windows x86-64

zttp-0.0.24-cp313-cp313-musllinux_1_2_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zttp-0.0.24-cp313-cp313-musllinux_1_2_aarch64.whl (396.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zttp-0.0.24-cp313-cp313-manylinux_2_28_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp313-cp313-manylinux_2_28_aarch64.whl (397.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp313-cp313-macosx_11_0_x86_64.whl (402.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zttp-0.0.24-cp313-cp313-macosx_11_0_arm64.whl (357.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zttp-0.0.24-cp312-cp312-win_amd64.whl (470.7 kB view details)

Uploaded CPython 3.12Windows x86-64

zttp-0.0.24-cp312-cp312-musllinux_1_2_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zttp-0.0.24-cp312-cp312-musllinux_1_2_aarch64.whl (396.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zttp-0.0.24-cp312-cp312-manylinux_2_28_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp312-cp312-manylinux_2_28_aarch64.whl (397.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp312-cp312-macosx_11_0_x86_64.whl (402.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zttp-0.0.24-cp312-cp312-macosx_11_0_arm64.whl (357.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zttp-0.0.24-cp311-cp311-win_amd64.whl (470.7 kB view details)

Uploaded CPython 3.11Windows x86-64

zttp-0.0.24-cp311-cp311-musllinux_1_2_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zttp-0.0.24-cp311-cp311-musllinux_1_2_aarch64.whl (396.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zttp-0.0.24-cp311-cp311-manylinux_2_28_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp311-cp311-manylinux_2_28_aarch64.whl (398.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp311-cp311-macosx_11_0_x86_64.whl (402.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zttp-0.0.24-cp311-cp311-macosx_11_0_arm64.whl (357.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zttp-0.0.24-cp310-cp310-win_amd64.whl (470.8 kB view details)

Uploaded CPython 3.10Windows x86-64

zttp-0.0.24-cp310-cp310-musllinux_1_2_x86_64.whl (425.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zttp-0.0.24-cp310-cp310-musllinux_1_2_aarch64.whl (397.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zttp-0.0.24-cp310-cp310-manylinux_2_28_x86_64.whl (427.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

zttp-0.0.24-cp310-cp310-manylinux_2_28_aarch64.whl (398.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

zttp-0.0.24-cp310-cp310-macosx_11_0_x86_64.whl (402.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zttp-0.0.24-cp310-cp310-macosx_11_0_arm64.whl (357.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file zttp-0.0.24.tar.gz.

File metadata

  • Download URL: zttp-0.0.24.tar.gz
  • Upload date:
  • Size: 326.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24.tar.gz
Algorithm Hash digest
SHA256 21e2a641857fdf336e08fd2dbdfd546251393077b11aac369c63dd708072fa21
MD5 1a9215dd78522cd4c02316209d243533
BLAKE2b-256 022bb5cc138a65c0647b5694d2bc0dd79718338607e4f7601489fb26a97c0e01

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 484.7 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 d532125caba6fb31f93e74aadcf854b349975b0c5c8be8a57db18b632db5df64
MD5 7e531f6255b44ee3fd2dc4d8f6b395ee
BLAKE2b-256 075403899df975a28d8147964e56584367588456d1845f6e55d8715851e91b9f

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.4 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34bcc620a17295acb7d6345b0d2819a571417bdab4717c4d8e7dd54006a7d72a
MD5 99f366d0274b981291482b43e94b5b96
BLAKE2b-256 a9feb958145ddd59e20ac88ef649f30894fafff43a30a9a7c8d4fdfc7d36a389

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 397.0 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 313923deb402bd12ce6125dd8e4a11ecb29384dbeb24cdf3db13059f8f55934b
MD5 4f23519ba9a8b1d81ae4119bd8e3eb27
BLAKE2b-256 071d4d65f53e75d040ca0fcb1c7be3c5a6dad9860fb0a2fa8c745dd52553cc2e

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 427.0 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aae9b081a5e0a24ac3e72d5e8a784bcef711b28c120f2f1c31575b9fb535beb2
MD5 6b0e7f607bedbe7cdc9c4c945f19d1bf
BLAKE2b-256 c14ac92e8508c6db3cb36388c8a0b8c1841f5abefa06fbe32fec8ebe898e2047

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 398.1 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fe6609b8b024253413ce0040bdf6e5e7b41dc4ee5e6c0930ac35edc8157ff76
MD5 9b9357c9c31475a2bf8455debb5c402f
BLAKE2b-256 7084d8ce12aeca0f51d7b1dc7fc4675f0cdb5bdcb8364f0bcb80ecab8bea9dde

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 402.8 kB
  • Tags: CPython 3.15t, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 bfa66970673fc1ee35d39252d5e5a0616361767cde7bf63b1431bd5d8751ee94
MD5 4a58604e68b76582953827772b3f67a3
BLAKE2b-256 f767d2bacac1f1587dfcb618827697ec3e3a03ef97e30fd3fca40da90bed7d39

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.7 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e71f4d748eaa6d1716fd55ae8ed5705e2e7d2894a3ec8f4df3a2b6f2b9cab0a
MD5 45911a707d07f15a8134c157d53d2a3a
BLAKE2b-256 785dbe3bdb6d4701cafdfd76f4a769b3e9b0f57da67dcf252afd63e51c914243

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 486.1 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 33b56dbf9a2255cc4f4451de231146a8c45ac41a0d06c85ab43f6742e43249ff
MD5 337e2fca5694fee79d0c883fa17a95ba
BLAKE2b-256 5f2e8bdb7c1d49b12445570e249630def665789a05e7422cdbc8588f3cd373df

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 426.9 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a523dc243dfa598e2809fc7930eff89fba6a9804202375b8502a2d3c2a672c6
MD5 a9371db50f1cf75857e4bd6235c7e431
BLAKE2b-256 cd4324b4125a83998b29f94409d5489325bbedcaedc521ff275373ad0ebe1a81

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 398.7 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4b06a34a689762025e5f4126bf24c4b2fed8cf103ad064e8be6374ea6a6714d
MD5 3d1a44fae4d12dcf941fda0e28754f17
BLAKE2b-256 61f6655cc7b8f22d7fac1ef90bc614495204b00a88dd357157cbdbb471ee894f

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 428.5 kB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 249098033770eeaf51c802ea41e1334b19071f4760270b996beb0a0be17f1f1a
MD5 f92fbb25a035eed2476d75249d79b08b
BLAKE2b-256 fb9c42028cd142eb230f28045ce6d9d2702122bb379da5f5f56874290eb60002

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 399.6 kB
  • Tags: CPython 3.15, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d95d276c09714ea6492b913e08df691cc1d5442e8ceb2e026cc2d3df61346b8f
MD5 3324556a03376501a70c7c795d98f036
BLAKE2b-256 0fdad80908aa1cb120262717e74ad2419e9f9b65aee0a3aea4388c6e3e620079

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 404.2 kB
  • Tags: CPython 3.15, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f95a3df29a3877c0962108f4837ebb926227e6a21c2f2253f9be961e1adf9157
MD5 802a76227b4c09723b0aa3bf3e168306
BLAKE2b-256 12a6ab396e1b2d90b59976215c2fe864d04a5f61b98cce6f90fd38f3f960e547

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 359.1 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca3e7f2d52bfb5fee317cdf52cc8f7c3de20f6716a81e8ae52681da03ed741e9
MD5 98862258705b2ffd198f081702727d98
BLAKE2b-256 466472256aca09c8f6045f77d6bbbfb8d84aaab8467156f94eb78826792a4449

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 484.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ff7757da8c5dd9aeb36a599b82e9a11c10d60a88637bafbab6b69403abe054af
MD5 f56061d3a4f72ee8079fae47aff73556
BLAKE2b-256 41e72c48bf4ff929b389977e17b2cb1742599f54f2ef05ea383e571f1cb61aed

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.4 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1ce5c21feb912bc34d7d72727bac51a8ae444109e9ad2c0f59d8d76788a6304
MD5 93feea2cff48e2ff9299b87cee472175
BLAKE2b-256 939d671e1b36c3c4e3b428849e122bef937cc96abd6af9699c1f9a36d408958d

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 397.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09e68b06bb5ef46fce518ed37dc431ec481915a9281ac50b1945b7da887210e5
MD5 6eea3ef99176b83193f52d81ec279117
BLAKE2b-256 fa62860dbaedd12795acd1205e6e10c88d5711c71c210d01af057e7979fc45f3

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 427.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e11f803f96eef0804c5f733706398fb100e5532acc4e1df5c6f3aa097933927d
MD5 02d046f6797cd1e62aebabce10708529
BLAKE2b-256 ba96f3e76ff4a2805bd60ab6a73ed8d116123f5814f6159877b14bacfd285ace

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 398.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ed3856bb8027b78378a257c1015a476052edee88bae1a434e781451846fd669
MD5 2453a305b60a607fff621a7a54498e78
BLAKE2b-256 9d4a084494d5fd28a127806c9470490b04e895d62cc72bdc0185234024215e44

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 402.8 kB
  • Tags: CPython 3.14t, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 81f8695c49fd0a8d7642017958c293e7883f47d835eeb15596be3c2f2578b3af
MD5 75bcf7b7b2998567e679b6221ade2d48
BLAKE2b-256 4720c205cdee49121fd114936001c65e3ef048f28295a10a1b3e73f68e641223

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.7 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c2b32f972e42f1309351272ed629b13dd9759801f92728bfa2cfdad54a9056f
MD5 577915251673604cd98606410ddc7265
BLAKE2b-256 6463a0f3eb002009ca55d482d6abcc070ce6bb0da5c77353a02a9186f49258a5

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 486.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 904d3cd35f4db57aad04475185490e894bb5f4ec4a71a845fc5fbd564c9a2e58
MD5 b2faaf4d8e30461d62f9bec06ac1dcf4
BLAKE2b-256 c7142d3c1e7bb6162950c3a1374461b66efd76a9da99023803217fbf77a391a4

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 426.9 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edaad4cb4889d7516f74bb646a81357e3de29f30257a0716233b5fdba3ab5974
MD5 f3afe396d6044bc1ef2691a1afeb5b85
BLAKE2b-256 6a76d4ab2d432a2731ad5a7b5d367215ba52629762e4daf9c6d1ace8cf01ff4d

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 398.7 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3572dd05cf264c39ac07c8c9d209e7b8c1949226ae752908ac83bdca2d18c242
MD5 b1561053f86e88ddf30390e6b7624d88
BLAKE2b-256 a722fe16d37efebf31e0b9757864f2606d535354ecab9af6998494f28ed36711

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 428.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c9dc87cba06ddd7c0d44134a71daf3f727355c4e26569999c33ec6144e319ca
MD5 5ae9567acfe71ec4b2e3a20ebceaf6c5
BLAKE2b-256 20b06f1974c7eff5e5346f376c53c316d3d470520ec24b614b219fed97e83501

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 399.6 kB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 338c40336ee129a2387fe27d170f1fe7288198bf643d65ee4c38339b2cf8e887
MD5 f299d027d75b543c1f8647b870d26d8a
BLAKE2b-256 d2f146eab3948995bf54d5fc656eb65e0ab463ee336a57b87c31846e9ef9bbc1

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 404.2 kB
  • Tags: CPython 3.14, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 d63172694a6a1106f3e178ea61d8c9c48c9697ba2aff26cac28903946f8141b9
MD5 a46ea82b577c6262b015853c4cf0b8f8
BLAKE2b-256 66a77a79d8ec7fc5de7598508eced33f7e6782e1e1524d5e77d322bf4d96ed0c

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 359.1 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e33efed543c658fe3faab29aab676694db67aada932a9524c9b7a4e8077f797a
MD5 391edd92e7a78b56806e750a96689e18
BLAKE2b-256 6fed32c5e460f2f499cc1f36535bc4f6243f19016a4dd3ca3cffa96d801b94fb

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 470.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b5b74b8366731eb4aa5d0a328878cadb4229a2115b2ccf05fe24c7c2b8174de
MD5 9101d8e13a125e0860b5dcca6935bd6f
BLAKE2b-256 7ea6aaba28696bb2e66de78409ee21f647453006b1f9817905a34ca4eb2ba92e

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8608fe116c88e18ab28aea382436287df343e3ceadb551476694913105baa2f
MD5 c6a53e66293e42a6869b957a376852e5
BLAKE2b-256 1a17ceaa70bb89cf2d175ee0ca2e4a20e61c99db1b8ff7ad3f810ac5cad5250b

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 396.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf9812ad22daaf64bac412f0e248d4caafabe56b44e8e4df29cf7dbd15c092fd
MD5 212ba92cf10b1e0f2e6162e3fba7bce4
BLAKE2b-256 500b32685569a96dd311188d71342269580e8b0d61d04ae9f6cd61c67c083eb7

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 426.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 711c8db0d125e8ce9a6615317bb1aaa114249fdb532df9d6e2e1248f2b4be451
MD5 3c1013edf5654acbc0b863c7ec858799
BLAKE2b-256 044fceda0120712435133c6f6067d8fa94fe7537987cd5f0035850dc8cdc35cf

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c452fbffebc970ab9a008e6b6ce6b7b6742681b8808dbaf7b3fdb36019ee669
MD5 c26d1c9acefe2773e87d052d469fa6ba
BLAKE2b-256 9ee86446590d20647c1e901f61e0b1d35f29ce41afa6db38fc8493ef20b9058b

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 402.6 kB
  • Tags: CPython 3.13, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a3e8795dd5bebb753738dd2ecda7e99ffe08370a41a9bd35ab1aa21af73e27a0
MD5 4091ea8d49aca415d4d3c3fda22ca1a1
BLAKE2b-256 63f3c7638670f76d05225fd10b2642f3f12bff643434dd2f696bb986ca8d306a

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.6 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5ff4f2fdd6ee197aa6f1b58eb579272d35ca614af6c468d15d3b864740ff61f
MD5 a0f58f9583fb4373ae65170af06d6f2c
BLAKE2b-256 34f1a7d72da623c2ef663f73dc2cb5cf7ad5e18a9e5325871ac382afb9336bbe

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 470.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b890f3dc5580baf34139d92d261a8caedd64bc399bb23bec55c7eb7bdf4732c7
MD5 f8c167339982cfb0e1d53959174ae3a8
BLAKE2b-256 4802e2d0ef28208352dc1a8c44b441ffab8593064357f746e933428dba122d06

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a78f7633b719cd6ecbef99d8b54af43d481a76649a37471c20374a564d69092
MD5 d7d8b3397018cffe707bfefb893b6d3d
BLAKE2b-256 c610564997d0442c280e9d58081981cf75888a0ba765689f995d7344e32a7ab3

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 396.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efbbec796531a12f8f65c29383eb5d8e08478828359373f04e20a8ad00f12324
MD5 413c737bb07e52345a134b40906d530a
BLAKE2b-256 632ab4abdc14d11d9a33609ebbe83cac0091be9637b07c4ec1783e66431d6c63

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 426.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6c9833fec230fdbd5daf44b4c0ee52c37256547055d64c6c64c8c625650e57e
MD5 457e432ad1d2101e2d399350e1824ff4
BLAKE2b-256 9c516353d0e98002900e5876e7efb659d02c9e87df6302098aa065d1ff7c2e99

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32c564ab93950b0ccc67f85d3a6177a95ac732c77606a5d3891456236c91be1e
MD5 12eefda29c27ae1db345e957c09392d9
BLAKE2b-256 628c917076cb2e3efc5f58b9becc3a38e8429042c5152b06589f1353d66abac5

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 402.6 kB
  • Tags: CPython 3.12, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 acd2aa8ed8e43b23de4fdca063b748bea4b7e100971260173fa8cf5a17d6bc13
MD5 48b28bfa13306270516d2db6c8f4f8df
BLAKE2b-256 e2335aaba1417ef735a86a71c4503cb6775d49a213988bace7f1666b6671471e

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.6 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 550a18d8265085d49dcf90ea11b44cd45507c3ac1c484acb2d909797c5b07b76
MD5 3fbcb790060d2c9d7b5eec58dc72fdfa
BLAKE2b-256 504af9d63d005ffa98a15dc54f44e8309f0e6eb886a8ce38db61b8dfd41157ff

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 470.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61fc851ac7685241ed69c9c97288fa40ba9ff0d658838f4a963bfd6ab31f5e89
MD5 5b85167ed43fdeb6078afccc7e1837aa
BLAKE2b-256 d5239befdb7db2b13599b1a5d5a6ce23d85cf5421c9bfa5ff4215f25018aace3

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16cddde87e319fe09e01b0905a0ccd5348bbb9a506dd02ec3b60adccd9673ca9
MD5 d2e916ad3c53f4a30a05849eda7891f0
BLAKE2b-256 827958f7521ebafb39f528dcaeca7f4c04bc8edb63955ddc6d969087507f848b

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 396.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 483d3af117ddedfac1e15bbdd72aedfb8710885883fac7f5052a3f2171f2585a
MD5 87f97b764462300d7ab451ad13eadc93
BLAKE2b-256 eae967f46dd36461906cc2e29a63aca1e3c9283d9f1faf096671aa152520c0d6

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 426.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4dcbad26d69a2b83f750326505553c4e2613d7edee2afb8306fe2228471afce8
MD5 c93f99af7803442da50ff5c0cd09a348
BLAKE2b-256 d56067e26c1695c7cf764b3596a691826bfa3e919e4a7f7d931ad302bb79bd3a

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 398.0 kB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1e8dee9bf3a856b1ff0501f052712b8b5c7f09129d08d8763b606edf25c1b50
MD5 028857fcd6f2100b1dbc25804757677f
BLAKE2b-256 bcee255c5930ea06cf889f42c137c552aa4114fed103fe07111077253c8ab471

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 402.7 kB
  • Tags: CPython 3.11, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8d20054d992569232024eedacb648f6d0c19b2595b5a641225f5e554cd040d51
MD5 74403a50c99a8dc3424490e0f6d3e228
BLAKE2b-256 fc39d01d1d915e4795d740bf8b07961a942ce9d3dad491195f30ac64929e729f

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.6 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7840cd40bfdc999621b296d45b5dde5a9274e0b62536b3ded2db8da28d62cd5
MD5 4c7ca352cae1fee0c3d185dc4f2138c2
BLAKE2b-256 ad55a1bde472021c42bc65dac664cc5a53e00b797b7cdd46073ba71aea67ffbd

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 470.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 552932a32529b00da3d1b8413324b535f8190b3368f496ff46705a70aa7b6e00
MD5 77fba699f0b41cc1fb5c4a35c60c8f58
BLAKE2b-256 4b76b687b61a006b089c620c9406191670de0dcc1681e518d0885130fc9f5041

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1451e1da183983342db79a971a6240319d72fa7826f62aec522ca59848402a0
MD5 346ca3a29f9cc16fa2f8f3646f5fb5c5
BLAKE2b-256 7c932eae41832fe1567e3879fd06f76ef34ff6ebb4fb6983c4c6f3f4f998c5db

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 397.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b8ef582dd82cd2fa94e65ab6da04586112ccd6d84c05519995fd5102f8e3fac
MD5 f08c1990099d19686897cbaa00c38369
BLAKE2b-256 358be84a787981f5e8d03219f9c6f4588c994e77f21a675a0673aa89e469df1a

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 427.0 kB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16ba3ccf409014e3c16fabdbee08d7598d10a13f85911dec5ba86302d38d3947
MD5 d2f9e6827ca750bada182eda426bf431
BLAKE2b-256 6d3d9b26b6bf5ce581d1ad1561df065db62f1aa9b1e72eeacd4f1dd67d828445

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 398.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f80b85b3890a6f18c521ff0e9f087811e1dcf6a21515106f00bb0c4dc1daf002
MD5 27d625fa2cfd0da2f695d3b6f70c11a1
BLAKE2b-256 bf40b8d66b9057f49814d1b00cb784d237063b8fbf47ab6041f404af41722542

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 402.7 kB
  • Tags: CPython 3.10, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6a10d666cb46ed5b1171f029f5be06ce185682a66fd657b31ce497eac2a32dfc
MD5 6adf88ea934d5796291a51490c8cd4d1
BLAKE2b-256 7716339e2f200222863d2e037b220686150b2e92379918474c65cb7d3d4d58d3

See more details on using hashes here.

File details

Details for the file zttp-0.0.24-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zttp-0.0.24-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 357.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for zttp-0.0.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3f8b286cc196a451648fdd32bd5301ae82750fd8a880972759dd10d21deb9c8
MD5 825facfde892951995f3df83be81f194
BLAKE2b-256 55c09d04d937077ef26b4934c211ae8fa6d57cbd064c911175d8209534ad8b54

See more details on using hashes here.

Supported by

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