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.22.tar.gz (324.5 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.22-cp315-cp315t-win_amd64.whl (483.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

zttp-0.0.22-cp315-cp315t-musllinux_1_2_x86_64.whl (424.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

zttp-0.0.22-cp315-cp315t-musllinux_1_2_aarch64.whl (396.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

zttp-0.0.22-cp315-cp315t-manylinux_2_28_x86_64.whl (425.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp315-cp315t-manylinux_2_28_aarch64.whl (397.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp315-cp315t-macosx_11_0_x86_64.whl (401.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ x86-64

zttp-0.0.22-cp315-cp315t-macosx_11_0_arm64.whl (356.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

zttp-0.0.22-cp315-cp315-win_amd64.whl (484.9 kB view details)

Uploaded CPython 3.15Windows x86-64

zttp-0.0.22-cp315-cp315-musllinux_1_2_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

zttp-0.0.22-cp315-cp315-musllinux_1_2_aarch64.whl (397.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

zttp-0.0.22-cp315-cp315-manylinux_2_28_x86_64.whl (427.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp315-cp315-manylinux_2_28_aarch64.whl (398.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp315-cp315-macosx_11_0_x86_64.whl (403.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ x86-64

zttp-0.0.22-cp315-cp315-macosx_11_0_arm64.whl (358.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

zttp-0.0.22-cp314-cp314t-win_amd64.whl (483.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

zttp-0.0.22-cp314-cp314t-musllinux_1_2_x86_64.whl (424.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

zttp-0.0.22-cp314-cp314t-musllinux_1_2_aarch64.whl (396.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

zttp-0.0.22-cp314-cp314t-manylinux_2_28_x86_64.whl (425.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp314-cp314t-manylinux_2_28_aarch64.whl (397.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp314-cp314t-macosx_11_0_x86_64.whl (401.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

zttp-0.0.22-cp314-cp314t-macosx_11_0_arm64.whl (356.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zttp-0.0.22-cp314-cp314-win_amd64.whl (484.9 kB view details)

Uploaded CPython 3.14Windows x86-64

zttp-0.0.22-cp314-cp314-musllinux_1_2_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zttp-0.0.22-cp314-cp314-musllinux_1_2_aarch64.whl (397.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zttp-0.0.22-cp314-cp314-manylinux_2_28_x86_64.whl (427.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp314-cp314-manylinux_2_28_aarch64.whl (398.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp314-cp314-macosx_11_0_x86_64.whl (403.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

zttp-0.0.22-cp314-cp314-macosx_11_0_arm64.whl (358.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zttp-0.0.22-cp313-cp313-win_amd64.whl (469.4 kB view details)

Uploaded CPython 3.13Windows x86-64

zttp-0.0.22-cp313-cp313-musllinux_1_2_x86_64.whl (424.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zttp-0.0.22-cp313-cp313-musllinux_1_2_aarch64.whl (395.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zttp-0.0.22-cp313-cp313-manylinux_2_28_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp313-cp313-manylinux_2_28_aarch64.whl (397.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp313-cp313-macosx_11_0_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

zttp-0.0.22-cp313-cp313-macosx_11_0_arm64.whl (356.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zttp-0.0.22-cp312-cp312-win_amd64.whl (469.4 kB view details)

Uploaded CPython 3.12Windows x86-64

zttp-0.0.22-cp312-cp312-musllinux_1_2_x86_64.whl (424.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zttp-0.0.22-cp312-cp312-musllinux_1_2_aarch64.whl (395.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zttp-0.0.22-cp312-cp312-manylinux_2_28_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp312-cp312-manylinux_2_28_aarch64.whl (397.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp312-cp312-macosx_11_0_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

zttp-0.0.22-cp312-cp312-macosx_11_0_arm64.whl (356.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zttp-0.0.22-cp311-cp311-win_amd64.whl (469.5 kB view details)

Uploaded CPython 3.11Windows x86-64

zttp-0.0.22-cp311-cp311-musllinux_1_2_x86_64.whl (423.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zttp-0.0.22-cp311-cp311-musllinux_1_2_aarch64.whl (395.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zttp-0.0.22-cp311-cp311-manylinux_2_28_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp311-cp311-manylinux_2_28_aarch64.whl (397.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp311-cp311-macosx_11_0_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

zttp-0.0.22-cp311-cp311-macosx_11_0_arm64.whl (356.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zttp-0.0.22-cp310-cp310-win_amd64.whl (469.5 kB view details)

Uploaded CPython 3.10Windows x86-64

zttp-0.0.22-cp310-cp310-musllinux_1_2_x86_64.whl (424.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zttp-0.0.22-cp310-cp310-musllinux_1_2_aarch64.whl (395.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zttp-0.0.22-cp310-cp310-manylinux_2_28_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

zttp-0.0.22-cp310-cp310-manylinux_2_28_aarch64.whl (397.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

zttp-0.0.22-cp310-cp310-macosx_11_0_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

zttp-0.0.22-cp310-cp310-macosx_11_0_arm64.whl (356.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zttp-0.0.22.tar.gz
  • Upload date:
  • Size: 324.5 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.22.tar.gz
Algorithm Hash digest
SHA256 d7ab869637da7779e85f89cba649ce8151864ac0de85c6a6c3b3763cfeffa1fa
MD5 7a1a4ab88870e6b569d963f21366f2b9
BLAKE2b-256 9c8496698619143d082aeb2a3d0bcbcf6e49951fdcaec0595297d9c763869811

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 483.5 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.22-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 813d8553997d17dc7e03cd2ae6fb2cd98dc6dad91895d6df9b64f69436321fde
MD5 36079274a8df0318e1b4d7682ae34426
BLAKE2b-256 b3f3ffb80716d1aa0bc56b060b13df0132179684fd5b6cd02efcd197d75d478f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 424.1 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.22-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 693ec64223126766706f14ca0b5f73e0347cc7c8cc8d651e7ad5be8e7099783c
MD5 3ba1d3f2e77ac4d4a9716730c19992ff
BLAKE2b-256 b8a59f16b65d18dc5c2e6adcfb5cf4f223637a57141d08f1024713178c03f45b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 396.1 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.22-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fee3e55a48ad873995b9fb8bf3d7d351a338d9a398f3147c384364f6cae962e
MD5 fc1a8812076b86c23a364443c56e6e4a
BLAKE2b-256 eae45fd793b4204c2ae14bc3b42346718f7d0d9c4388288956e319e0ca5528f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 425.9 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.22-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c627b0b1e7ef3289249600ad11760028da1c91bfc5026a5abd94b874d90e4e9
MD5 d2e3a5782ec12255645388e69da13140
BLAKE2b-256 2f0a090f34e113fe44a81f7e92afa37bee60594d9c8d64f9b4b11aed7d98260a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.2 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.22-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f102019928df30f311c42060c37b42aaa57807c6ef8b03c05298f958175c833e
MD5 41a30e5cd3943e97001136b42ccd5159
BLAKE2b-256 0fadd2e2d77c25728871caf43624e48c91c4df777329c5882bf084576f1c818a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 401.7 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.22-cp315-cp315t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c60adab18d89199b13c373aa599e20df53ac6daffa263dd44f7b69378086bb88
MD5 400487842bcf1d63477f26b8b19b6fc4
BLAKE2b-256 44d647480ba758a014a81379e974ef95ca0d02663fda6cfc0cdce14bcfcd268e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 356.5 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.22-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3f021c16d97ced54ec5f3e0613d34a5124067af05f3e692dce324950cd451e4
MD5 c6356b51324096472e70b52fc62f5f0e
BLAKE2b-256 07fc18f368ba1b0c5655390e6a325741a0ace529a6d9763548627b68c84a7fac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 484.9 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.22-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 5b7624945cbdbf3d0305b042384f7aa19325bcba31a108a0ef75ac98b4c7ddde
MD5 32b368f876731591f7ec58a91c778404
BLAKE2b-256 a82c2226edbdfa9d213a836e5cdc0156404d2bf6d284a178cf930ee9d4e0a4db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.8 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.22-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a14f7eb0d5aff2d4a78ef0390fe680f37fdd4941dc4f4431ed7bbcab726b6f4
MD5 b00686733a56827932547715f9318b75
BLAKE2b-256 4bb7907cf896372bc5e0b111fadbf88dcb75cd1e2f5e732660f4489ca536c532

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 397.8 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.22-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f87b234f7a2bad38a76b48381754ff1cc5ddc4295fca6854a2181ae76529ebf
MD5 486118171ffc57f5185195ed44765edd
BLAKE2b-256 e178642fccc3710124c76429699ab010eba754157b735589e2a8ddd0f963e693

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 427.3 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.22-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c429551c1d3c63e1345ed70c3787ce1cfafd83e730e41794c5a66e175b561440
MD5 26a7efb58b57f4337285fd7a60bb8b21
BLAKE2b-256 dc3a54ef654c5e7f7350e24fbdce2535c8a72c690224bdb9668661a66706b31c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 398.8 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.22-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecd6ae548fc731d4fd01b0ce4aeb5b38c7caad114471e8fea1d968aed84c8b8e
MD5 df84fe6269fc78706baa4dd1900ec769
BLAKE2b-256 c438ecfb7676f4beb01e047bbdefb1039c3e407626ff48efac159cf95745ea06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 403.0 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.22-cp315-cp315-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 e3966cf7864a39fcd4958a286bcbe9485dd23aa1cacddccf148854b62fe5118e
MD5 cf47b426581ed556b14dcb008f8390c2
BLAKE2b-256 124862512275cc514dc30fdcdf85171ed93d3cf767d7a41191f210d6615dd2e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 358.2 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.22-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa8f25f86f8dad4f30c7cc3d14b091086b1440489d8a2ce997261709c1aed0b
MD5 24e98e183c2eb7e473fd2d941d33ebb7
BLAKE2b-256 2eaaf9b5062aba45cd254656b05db6fec40f2508d1094e1e59e697238f1ebedf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 483.5 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.22-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bdef6363e15df03bcd8f3ccc0512a57e8ac88d610d04c0a96c4ace3585c09eee
MD5 54daa9de02bec6f3fb4aa59975b467f1
BLAKE2b-256 24b6283c2532f338511624eb1ebffc4cc95bee022640491bffc0ab2c5b344971

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 424.1 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.22-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66df3001e399f72f236f87a62c778a65c5efdf239acc1a9d4b825b9b52346567
MD5 21aa31b103b35f44586e5d1da5b2b5f2
BLAKE2b-256 952bdebba6727c777e8ac225672b9e7e1cf47c0e2f4cf88c170a1af0912987f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 396.1 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.22-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3514d23fd5051d1e1b8e40efb7721fd746ba69ea6480a5a35822d4b81c0c2226
MD5 905d22d8eba135b0329c24c02373b641
BLAKE2b-256 c39645f9ad233cc791d23c7708f33ca85a1ff04d676d71b7c17dd1d1ab67f73f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 425.9 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.22-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e55a55460b160e237262e23ceb3aec6aad043d72d7cf0e136ba043a01adedf5
MD5 3811eb986079e77c9d88af992977b91b
BLAKE2b-256 1a5b399bce49426943e48fa8c873c29fe7dc5075fb53ff784169f1b871841de2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.2 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.22-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66f9fc924c5ec9a54e9ddff3accf186e329aa35378396940d024f8c3746953dc
MD5 453bd9b8fb10e36549c8beb6e9fc2eb1
BLAKE2b-256 05c412c1c82b1b6ad2ccb158724a154cccb64f56dd155fc22e191abfe87a5df1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 401.7 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.22-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 111c4c70cd9611c65c894b71e0bc942ce52fdde1ef6d33567a015bde60c37400
MD5 d09fc2560e257ec17e13026ee9f44c78
BLAKE2b-256 3736d159b3a9fea84041a98f46d810c76c1a95d9d87f0e896f0166a8c39fa752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 356.5 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.22-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fb4b3f879a484c4bccb953b00cc47445f2118fa00de75a37dcc23bf74c179eb
MD5 77cfb17f0b44a18e48fbee5da344d748
BLAKE2b-256 361588b0959058d4f63d27ca7793699bd151840fc565d1e4a89f2a3a78a6d958

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 484.9 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.22-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77c9a96c27714119454dd14cce64596b76f6fc53f31d2622a4fb3d05bc6970a3
MD5 bfacaa17147d1bb5f759d44a9f959b46
BLAKE2b-256 5d3642c6a66b3f1ac2d5f2c2b7eb7147b6fe41af0118372da7b0c07a4e353986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 425.8 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.22-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a97deac945309e045a091a2a6271b524e5eef8e2ffada85b15e9aa7a1fcefa3
MD5 0e32d281c19ec39bf85c3b02f15d7b2f
BLAKE2b-256 f6c477c385706dcd985e5a99ed3860f175d8b2cfd8936c457cdb85bbdbcca15c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 397.8 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.22-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 566ca18cd7805f5e5befb451c498d5f54124b6f0bc3594984c770aa52d91f089
MD5 ba85161310921f22d720c3b9c7730fbf
BLAKE2b-256 05279d7d4574a2f148e97a658a143a1b9ab2e8e913c40b795f7db00fa16f4f50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 427.3 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.22-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a237be241d926719764f3648f2e26453a7145cc0058bafd00f38d220e925e891
MD5 b95e46031f0b13b5629b8a25fdefcb05
BLAKE2b-256 39e45cd4d7f3632dcb67332c017e0d948703c3f55fc28842d5284867c65d3510

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 398.8 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.22-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 740d4e972d17491115213642aaa82e0b3795102cfa68f12a6eb924b38bbd1394
MD5 af8f2f90443e6930b0ca11ab5b83d971
BLAKE2b-256 7d2dcd389fdbba57a2a68bef1932cef3dcbf6929d8e32007a4eaddf5fe029590

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 403.0 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.22-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7d8957592c5155f874ea7fed2b9ace9091520b4209cfa501741c634595b3b1c7
MD5 86f32657f7229d696bb9a5b2f3f55a99
BLAKE2b-256 825161bc9a7b911fcbd94fc714a79528c9d8316f7289ef64a3b7e4d70d739c9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 358.2 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.22-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4da41a3b8fb155f9e271412c59702c1c5aaf12676b55ed08b2669beef816e3e
MD5 69e304de30893cf04c21bafa8c5f7c98
BLAKE2b-256 cbe69a1b6f276f383e95bc000dc77f3e5c4386b118d023a1f170763038805f04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 469.4 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.22-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2fdaa33783c920106b721fe822c42f2babc9775270669369c5871abae52a4f6a
MD5 3935de2d0e973d3651997a51bfdf7153
BLAKE2b-256 d7238e4a09ec60af6ae31f84c14d96f461deba134528151e756de72e4493e548

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 424.0 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.22-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98955cfa445d98782ddff64c82f85ea569d6e70201874eaa622067ac66f58a21
MD5 ca67db12f203e836dcefae07e887861c
BLAKE2b-256 57a6330da155066bc2664f8fc285a4a5b001c3e0ef47854786c00cd3c83927f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 395.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.22-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d26befb0b38ee30e397d48fe75e7ea763bef9867d02d52ba2d10ffedb81607a
MD5 208ebd26126b6b85c4807af85bb70f09
BLAKE2b-256 215511e0c777447ea4e83eec50c576dc9b8b3514c975517db56dfe88275b5511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 425.7 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.22-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ed801c4b73f0e48a78561910df6c9513c3f948aabca9997105f04b7dcc2a259
MD5 67eb6ca237d1bc0bed0df36b6b479bc3
BLAKE2b-256 fc527c9deac6a3ac68ee019cfe7c8d819db0af0ccef214f1c198ee4731481e6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.0 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.22-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35d3258a74175f3497b4f96e1698a3ac08eaf16aa3de742c3c18a0c0fc51ce47
MD5 db641e4a2c980e410f256c0cfe456526
BLAKE2b-256 b4fa0f3d95956c4748f02fa29c4387c653d9e3bb111b48e34623e911259db687

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 401.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.22-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2874df85eef2a89f07902d0e753905e6db7836f2ba6e477be2da9b582978888b
MD5 e4838274c1c8288c363d6d5a77ef7438
BLAKE2b-256 0f303432221ee27a930e635c549ee1045cf776acd9cfaa4259e72d77a12fd4dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 356.4 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.22-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ae1c4f1befe89728d91dbe393ae1b4aca9cf470c4131bc9ac660ea6c6d79ac0
MD5 5bf5a9aeb87921fd4001ee68cbe891bc
BLAKE2b-256 f69a307e8e86d2e423adb21b7220c4cd81daccabfef6bdefe0ae08e4f428e79e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 469.4 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.22-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34dc67ae88cea4efbb4bc3969d975bc812871d7b73bff780b65b4089f4d473ea
MD5 8b86803fb3c57d2eaf9f5b71025fd928
BLAKE2b-256 10734afb416ccf1a9849917d0fceaa206bc16893de2526950e710e41122b1954

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 424.0 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.22-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42ba17df89850b5c2637fcbcd91cc19f392d15fb24d0ed4d858f4abded673bf1
MD5 c7aa7a174c61d90b1a3a9f5090f33679
BLAKE2b-256 69573be3171519e5a338efe4d462d95bba73daa2f69fc0dd961c7a0a14921d55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 395.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.22-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56b824304dfb912e55b19cdfe5e1a74972afe6df68d686efb9a6a9e3aa09529c
MD5 cfdec70ed00cb4762ffbf8cdd90b7067
BLAKE2b-256 ee40245762730ad25e1dcbbc5c522060924cd76084b04d94d0e090b81de6154c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 425.7 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.22-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1006c5025f70f05b75e06ffc161d373ba878c01ec24b844a51acf8f910cdb3a5
MD5 fafe72c20e0a54dbc1ebed6a1b653c32
BLAKE2b-256 0587820e105e286c05bf688e34735c362b82245b1d542a3d14b5be01c60f68a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.1 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.22-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ebbd183d2a896fa4b89d2ddf6c97db4c9a08fa362fd405cbc36fa5afeb92d1fb
MD5 b730c79532155f2afa4023b7a0ca7416
BLAKE2b-256 f9c04ef0aafa1ffcbea01f1f85eefa1b24c1881302793163025d04309c3cf8e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 401.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.22-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9eaf36b4bd4feb95a3114f557ed73433c3f2c4f631fc7ded242fa424949073c5
MD5 b0822948307c361fdc45bb62eb46247e
BLAKE2b-256 6bce2cacadc396e4a11565a8dc25b955da10747236126bbe0549127f097b0bc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 356.4 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.22-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 629806f171a012d5ad044c3168f12c87557eee67ea8e89765d01557bdd1c047a
MD5 3da96caae9a4b19f78e03c362c921dd2
BLAKE2b-256 1353eed69b21617a7bc79b024c9dd0732439d58bb2615812136855fa9178e38d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 469.5 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.22-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f95e6b84d969ae35f86d3558f5ff6cdb40738010283b31ab2859bfe7948566f
MD5 6bdb5eefa81d0c16eb38b43c4765a5a1
BLAKE2b-256 05eff67703d82493c5de5526226d4e56ca0c66f47fbc08a4ec7c0f00df18b2d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 423.9 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.22-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 758bf4133e615d4e82b82a283066e547f7e0ec57fa2437e1c14b410cb7ef1503
MD5 f593d66c8e0c2a15390dae36cfbf99c0
BLAKE2b-256 ddfa3ebf81bc2d5dc20a57880195b4d755ccb90ba80b23867ed60f17cc556812

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 395.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.22-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2ebbad009b25817dc7e4e6c37f2cd23de0983560e11cf8671b2f45897aee1cc
MD5 249600c322bfb0a3060148cb251daa2b
BLAKE2b-256 6d94908233cb15e6ebc482e344bcf8ffae693cfe21a97176a6eb2f8bc24960be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 425.7 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.22-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b371f6fb90621fb4f5906a8431c01e4ffb44d3f0e19cadbce307b14b9c475e0
MD5 4ddd6503040e2941dec9b830cd53da47
BLAKE2b-256 bd14403bf20241cb604e4a34caef2f4766ec56f1a55caa24f2d107f36334246d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.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.22-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea66d8f20ed3f957b870c75c6e7d58380cb7dbdb42c2797bd6e9749c0c40dbbc
MD5 5a8e4653446d84c677f643a8c02f4d00
BLAKE2b-256 1cc7d7aa7a931119a99addf41b55773c77359fe74e108a39d265f082b861172b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 401.6 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.22-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a852ea54ba0aa97636f147bbcd221eafa5809fa1e9eac80598aba7ee0cf59474
MD5 fc7d9924083f205b774fd8627f60d6e2
BLAKE2b-256 1844613d0ef4792f72e7b003bfd65f7a4df65a3ade7373d72d3ace9f43be2354

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 356.4 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.22-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64fd9bb46b59292d0c16862075e479f25f54df1b291db2cb05bbda56e646f435
MD5 1f06e4256a18a3c0f93b71d1caa18e12
BLAKE2b-256 ec08f390f2dfdbbd7e71c496c4499c76d912e91834b5545e55e2d91b4d151e26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 469.5 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.22-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6b891bd010e9685a6bb326d38cc8eb5ef27be72f93ebb27d090c4769fe9d6d38
MD5 1ce3e0ebe9f02df3df71438825189e13
BLAKE2b-256 8c1fd0c44e95bc3ea46412c53367722ebdab01c65eaff3a8fbabbd37855aee5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 424.0 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.22-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9a9620d0dfd6887aeb8921fd08f5abb47985bc74b6574620691fd611e7fa8fb
MD5 04c73945f15dca3d2ddd034e7754f854
BLAKE2b-256 6fd4e4d99dba1d950ade6dca1f5ac6a21b8dcec2e30150e8567a69d065d4609e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 395.9 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.22-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c166152af32876ea6ee1a337de9eaa4aab0e2b4c39588e403abff49fd08ce10
MD5 6ea0df48bb7c8872ee7a413beb9256f9
BLAKE2b-256 4b17c890fdd31f36ee329fffc4bebe47a88ad22ed6ba899cb491d6fc4e089946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 425.8 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.22-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be64a6a991163e07e73d890d48b2eaf0472f4b8b7e12d519ac5004160a66b522
MD5 f4cd9f29f98fc0ca3de2c37723f6abc4
BLAKE2b-256 3f53dec99ccf2e1d8b3658dc127091e24268a3c3716acbc3c5cd8c2f0541ba57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 397.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.22-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22bd44fa63ffe6fd1e1c5d100aab5723d8b144d7c5dc8b49be44777b13f9db1c
MD5 d753fb2f375c3c403bd2f0696ebb3bbf
BLAKE2b-256 22141b3ee56da9fca0b1acb471dbfcf69fa4573e3aaf4f5730d6258535046af1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 401.6 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.22-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0bc49d6b5452c906f10a751fc9a9074dd73be9f684abdac481e957b566c53540
MD5 e2fcc94aa7896c26317202062d582bbf
BLAKE2b-256 1051b90ca280eadbd6c77f42b0a8d3c116b1312ad8287bcf2121cb7baa04927b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zttp-0.0.22-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 356.5 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.22-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14f5b99bfa92d87b89dd58cdb699294ab6c8ee1eb45faad03d3f43edbdbccd45
MD5 ee2eb28314ca987acfe044252d9288aa
BLAKE2b-256 46d5e892e7d1742a8fa3384d19e636de8b4f69c6b8b0e49522b37066cfbd0b8c

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