Skip to main content

httpunk

httpunk is a Rust-powered async HTTP library for Python. It's powered by the hyper stack and Rust crates like http.

httpunk is deliberately low-level: you bring your own connected transport, and build requests and read responses directly. It's meant to be a solid, performant base for building HTTP clients and servers on top of.

httpunk's API mirrors hyper's wherever possible.

Warning: httpunk is in an early stage and still work in progress.

Note: httpunk was built with substantial help from LLMs, under human supervision.

In a nutshell

A client request over the asyncio backend:

import asyncio

from httpunk import Backend
from httpunk.util import connect


async def main():
    # connect() dials the socket, does TLS + ALPN, and returns the matching
    # (un-entered) HTTP/2 or HTTP/1 connection.
    async with await connect("https://www.example.com", backend=Backend.asyncio) as conn:
        resp = await conn.request("GET", "/", headers={"host": "www.example.com"})
        print(resp.status)                    # 200
        print(resp.headers["content-type"])   # b'text/html; charset=UTF-8'
        print(await resp.read())              # b'<!doctype html>...'


asyncio.run(main())

A server that speaks both HTTP/1 and HTTP/2, embedded in an asyncio loop:

import asyncio

import httpunk.asyncio


class Echo(httpunk.asyncio.AutoServerProtocol):
    async def handle(self, request):
        body = await request.read()
        await request.respond(200, headers={"content-type": "text/plain"}, body=body)


async def main():
    loop = asyncio.get_running_loop()
    server = await loop.create_server(Echo, "0.0.0.0", 8000)
    async with server:
        await server.serve_forever()


asyncio.run(main())

Installation

pip install httpunk

httpunk supports additional backends beyond asyncio, but they require extra dependencies. Enable one via the relevant extra:

pip install httpunk[tonio]

Features

  • HTTP/1 and HTTP/2, client and server implementations
  • Protocol-neutral structures such as Request, Response, HeaderMap
  • Multiple backend support: asyncio and tonio (with trio targeted for future releases)
  • AsyncIO ready-to-go protocols: extensible asyncio.Protocol classes (H1, H2, Auto)
  • Batteries in the util module: connect and ALPN negotiation, h1/h2 auto-detection, connection pooling, graceful shutdown, proxy-environment matching.

Usage

Backends

Everything that does I/O runs on a backend. There is no default: tonio needs free-threaded CPython 3.14+, while asyncio runs everywhere, so you must choose one and pass it explicitly.

from httpunk import Backend

Backend.asyncio   # the standard-library asyncio backend (available everywhere)
Backend.tonio     # the tonio runtime backend (free-threaded CPython 3.14+)

Every connection, server and httpunk.util helper takes a backend= argument, which accepts a Backend member (the recommended form) or an already-created backend instance:

from httpunk import Backend, H2Connection

conn = H2Connection(transport, authority="example.com:443", backend=Backend.asyncio)

Client

A client connection is created over a transport you have already connected. H1Connection and H2Connection share the same surface, so code written against one works against the other.

from httpunk import Backend, H1Connection, H2Connection, Request

# `transport` is any connected transport from your chosen backend
# (e.g. `await AsyncioBackend().connect_tcp(host, port)`), or use
# `httpunk.util.connect()` which dials + negotiates for you.
async with H2Connection(transport, authority="example.com:443", backend=Backend.asyncio) as conn:
    # Build a request explicitly and send it:
    resp = await conn.send_request(Request("GET", "/", headers={"host": "example.com"}))
    # ...or use the request() convenience:
    resp = await conn.request("GET", "/", headers={"host": "example.com"})

Entering the connection with async with runs the protocol handshake; leaving it closes the transport.

Request is protocol-neutral: Request(method, target, *, headers=None, body=None, trailers=None). The request-target is sent verbatim (a path, an absolute URL, or an authority for CONNECT) — httpunk never rewrites it or auto-adds a Host header, so you supply headers explicitly.

Response exposes status, headers (a HeaderMap), and a lazily-streamed body:

resp = await conn.request("GET", "/data")
resp.status                       # int, e.g. 200
resp.headers["content-type"]      # header values are bytes

# Read the whole body...
data = await resp.read()

# ...or stream it chunk by chunk:
async for chunk in resp.aiter_bytes():
    ...

resp.trailers                     # a HeaderMap of trailing headers, or None

A response can be used as an async context manager to guarantee release (cancelling the body if it wasn't fully read):

async with await conn.request("GET", "/big") as resp:
    async for chunk in resp.aiter_bytes():
        ...

Streaming request bodies and trailers

body may be bytes, or a sync/async iterable of bytes (streamed as it is produced). trailers are header fields sent after the body — chunked trailers on HTTP/1, a trailing HEADERS frame on HTTP/2:

async def chunks():
    yield b"hello "
    yield b"world"

resp = await conn.request(
    "POST", "/upload",
    headers={"host": "example.com", "content-type": "application/octet-stream"},
    body=chunks(),
    trailers={"x-checksum": "..."},
)

Readiness

conn.ready() waits until the connection can accept a request (an HTTP/2 stream slot is free, or the single in-flight HTTP/1 exchange has finished). conn.closed is a synchronous liveness check — useful for evicting a dead connection from a pool.

Server

A server is created over a transport you have already accepted from a listener. Iterate it to handle incoming requests; H1Server and H2Server share the same accept loop.

from httpunk import Backend, H1Server

async with H1Server(transport, backend=Backend.asyncio) as server:
    async for request in server:
        body = await request.read()
        await request.respond(200, headers={"content-type": "text/plain"}, body=body)

Each request carries method, target/path, headers, and a streamable body (request.read() / request.aiter_bytes()). Answer it with request.respond(status, *, headers=None, body=None). On HTTP/2 you can also abort a single stream with request.reset() instead of responding (e.g. when a handler fails) — the connection and its other streams keep running.

HTTP/1 serves one request/response at a time (the loop won't yield the next until the current one is answered); HTTP/2 multiplexes, so for concurrent handling you would spawn a task per request. The AsyncIO protocols handle that for you.

Servers support cooperative graceful shutdown via server.graceful_shutdown() (see GracefulShutdown for coordinating this across many connections).

Headers

HeaderMap is a dict-like, multi-value-aware header container (reused from the Rust http crate). Names are case-insensitive; values are returned as bytes.

from httpunk import HeaderMap

h = HeaderMap({"content-type": "text/plain"})
h["content-type"]            # b'text/plain'
h.get("x-missing")           # None
h.add("set-cookie", "a=1")   # append (multi-value)
h.add("set-cookie", "b=2")
h.get_all("set-cookie")      # [b'a=1', b'b=2']
"content-type" in h          # True

Anywhere a headers= argument is accepted you can pass a HeaderMap, a mapping, or an iterable of (name, value) pairs.

For consumers that want raw pairs — e.g. an ASGI server building a scope's headersraw_items() returns (bytes, bytes) tuples (names already lowercase) in one call:

h.raw_items()                # [(b'content-type', b'text/plain'), (b'set-cookie', b'a=1'), ...]

Errors

httpunk's exceptions all derive from a common HTTPunkError root. ConnectionClosedError is protocol-neutral — raised on both HTTP/1 and HTTP/2 when the transport closes with work in flight — so it sits directly under the root. Every HTTP/2-specific error shares the H2Error sub-base:

HTTPunkError
├── ConnectionClosedError    transport closed / IO error with work in flight  (HTTP/1 + HTTP/2)
└── H2Error                  base for HTTP/2 protocol errors
    ├── H2ProtocolError      connection-level protocol violation (-> GOAWAY)
    ├── H2StreamError        stream-level protocol violation (-> RST_STREAM)
    ├── H2UserError          local API misuse
    ├── H2FlowControlError   flow-control window over/underflow
    ├── GoAwayError          the peer sent GOAWAY
    └── StreamResetError     the peer sent RST_STREAM for a stream

Catch H2Error for HTTP/2 protocol failures, ConnectionClosedError for a dropped transport, or HTTPunkError for anything httpunk raises.

GoAwayError carries last_stream_id, error_code and debug_data; StreamResetError carries stream_id and error_code. Error codes are H2Reason members (an IntEnum, so they compare equal to plain ints) for known codes, or a raw int otherwise.

from httpunk import ConnectionClosedError, GoAwayError, HTTPunkError, StreamResetError

try:
    resp = await conn.request("GET", "/")
    await resp.read()
except StreamResetError as exc:
    print("stream reset:", exc.stream_id, exc.error_code)
except GoAwayError as exc:
    # streams above last_stream_id were not processed and are safe to retry
    print("server going away:", exc.last_stream_id)
except ConnectionClosedError:
    print("transport dropped")
except HTTPunkError:
    ...

Utilities

httpunk.util collects the higher-level conveniences a real client/server host needs. Unlike the core, these carry no wire-protocol fidelity constraint.

connect

connect(url, *, backend, alpn=("h2", "http/1.1"), ssl_context=None) dials url, negotiates the protocol, and returns the matching un-entered connection (with authority set from the URL):

  • https → TLS with ALPN; h2 upgrades to H2Connection, anything else falls back to H1Connection.
  • http → plain TCP → H1Connection.
from httpunk import Backend
from httpunk.util import connect

async with await connect("https://example.com", backend=Backend.asyncio) as conn:
    resp = await conn.request("GET", "/", headers={"host": "example.com"})

Auto protocol

auto.serve(transport, *, backend, only=None, cancel=None) sniffs an accepted transport's opening bytes and returns the matching un-entered H1Server or H2Server — the accepting- side analogue of connect. Pass only="h1" / only="h2" to force a protocol.

from httpunk import Backend
from httpunk.util import auto

server = await auto.serve(transport, backend=Backend.asyncio)
async with server:
    async for request in server:
        await request.respond(200, body=b"ok")

Connection pools

httpunk.util.pool provides three composable pools. A connector is an async callable returning an un-entered connection (typically lambda dst: connect(dst)); the pool owns the connection's lifetime.

  • Singleton — coalesces concurrent callers onto one shared connection (the HTTP/2 pattern). await pool.get() returns the shared connection, connecting once.
  • Cache — a set of idle connections checked out and returned for reuse (the HTTP/1 pattern). async with cache.checkout() as conn: leases one.
  • Map — routes a destination URL to a per-key inner pool, built lazily.
from httpunk import Backend
from httpunk.util import connect, pool

shared = pool.Singleton(lambda dst: connect(dst, backend=Backend.asyncio), backend=Backend.asyncio)
conn = await shared.get("https://example.com")
resp = await conn.request("GET", "/", headers={"host": "example.com"})

All pools expose retain(predicate) (evict connections a predicate rejects), is_empty() and aclose().

Graceful shutdown

GracefulShutdown coordinates a graceful shutdown across many connections. watch(server, serve) registers a connection and returns the coroutine that drives it; shutdown() signals every watched connection and waits for them to drain.

from httpunk.util import GracefulShutdown

graceful = GracefulShutdown(backend=Backend.asyncio)

async def serve(server):
    async with server:
        async for request in server:
            await handle(request)

# spawn `graceful.watch(server, serve)` per accepted connection, then on shutdown:
await graceful.shutdown()

Proxy matching

httpunk.util.proxy exposes the vendored proxy matcher (*_PROXY / NO_PROXY environment rules):

from httpunk.util import proxy

matcher = proxy.Matcher.from_env()
intercept = matcher.intercept("https://example.com")
if intercept is not None:
    print(intercept.uri)   # the proxy to use for this URL

AsyncIO utilities

httpunk.asyncio provides reusable asyncio.Protocol classes so you can embed httpunk in any asyncio program.

Server protocols — subclass one and implement handle(request):

  • H1ServerProtocol / H2ServerProtocol — force the protocol.
  • AutoServerProtocol — detect HTTP/1 vs HTTP/2 from the client's opening bytes.
import asyncio

import httpunk.asyncio


class MyServer(httpunk.asyncio.AutoServerProtocol):
    async def handle(self, request):
        await request.respond(200, headers={"content-type": "text/plain"}, body=b"hi")


async def main():
    loop = asyncio.get_running_loop()
    server = await loop.create_server(MyServer, "0.0.0.0", 8000)
    async with server:
        await server.serve_forever()


asyncio.run(main())

Each protocol supports graceful_shutdown() and wait_closed(). For host-coordinated shutdown, ServerConnections tracks live connections and drains them together:

from httpunk.asyncio import ServerConnections

conns = ServerConnections()
server = await loop.create_server(conns.track(MyServer), host, port)
# ... on shutdown:
server.close()                     # stop accepting new connections
await conns.shutdown(timeout=30)   # drain in-flight, force-close stragglers

Client protocols — the mirror of the server ones, for loop.create_connection. Once the connection is up, await proto.ready() returns the httpunk client connection to send requests on. Configuration (authority/scheme) is passed via a factory closure, since create_connection calls the factory with no arguments.

  • H1ClientProtocol / H2ClientProtocol — force the protocol.
  • AutoClientProtocol — pick HTTP/1 vs HTTP/2 from the TLS ALPN result (plain TCP → HTTP/1).
import asyncio
import ssl

import httpunk.asyncio


async def main():
    loop = asyncio.get_running_loop()
    ctx = ssl.create_default_context()
    ctx.set_alpn_protocols(["h2", "http/1.1"])
    transport, proto = await loop.create_connection(
        lambda: httpunk.asyncio.H2ClientProtocol(authority="example.com:443", scheme="https"),
        "example.com", 443, ssl=ctx, server_hostname="example.com",
    )
    conn = await proto.ready()                 # await handshake -> H2Connection
    resp = await conn.request("GET", "/", headers={"host": "example.com"})
    print(resp.status, await resp.read())
    await proto.aclose()


asyncio.run(main())

License

httpunk is released under 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

httpunk-0.2.0.tar.gz (305.6 kB view details)

Uploaded Source

Built Distributions

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

httpunk-0.2.0-pp311-pypy311_pp73-win_amd64.whl (447.1 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (766.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (820.8 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (712.2 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (541.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (581.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (506.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (529.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.2.0-cp315-cp315t-win_amd64.whl (440.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.2.0-cp315-cp315t-musllinux_1_1_x86_64.whl (761.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp315-cp315t-musllinux_1_1_armv7l.whl (807.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp315-cp315t-musllinux_1_1_aarch64.whl (706.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (547.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (568.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl (493.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.2.0-cp315-cp315t-macosx_10_12_x86_64.whl (522.4 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.2.0-cp315-cp315-win_amd64.whl (443.6 kB view details)

Uploaded CPython 3.15Windows x86-64

httpunk-0.2.0-cp315-cp315-musllinux_1_1_x86_64.whl (763.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp315-cp315-musllinux_1_1_armv7l.whl (810.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp315-cp315-musllinux_1_1_aarch64.whl (708.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (549.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (570.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.2.0-cp315-cp315-macosx_11_0_arm64.whl (496.5 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.2.0-cp315-cp315-macosx_10_12_x86_64.whl (524.8 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.2.0-cp314-cp314t-win_amd64.whl (440.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.2.0-cp314-cp314t-musllinux_1_1_x86_64.whl (761.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp314-cp314t-musllinux_1_1_armv7l.whl (808.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp314-cp314t-musllinux_1_1_aarch64.whl (706.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (547.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (568.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (493.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (522.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.2.0-cp314-cp314-win_amd64.whl (443.4 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.2.0-cp314-cp314-musllinux_1_1_x86_64.whl (764.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp314-cp314-musllinux_1_1_armv7l.whl (811.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp314-cp314-musllinux_1_1_aarch64.whl (708.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (550.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (570.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (496.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (524.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.2.0-cp313-cp313-win_amd64.whl (444.2 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl (763.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp313-cp313-musllinux_1_1_armv7l.whl (810.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl (708.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (549.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (569.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (496.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (525.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.2.0-cp312-cp312-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (763.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp312-cp312-musllinux_1_1_armv7l.whl (811.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (708.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (549.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (570.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (497.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (525.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.2.0-cp311-cp311-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (762.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp311-cp311-musllinux_1_1_armv7l.whl (815.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (708.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (577.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (501.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (525.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.2.0-cp310-cp310-win_amd64.whl (443.3 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (763.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.2.0-cp310-cp310-musllinux_1_1_armv7l.whl (816.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (709.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (537.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (530.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (578.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (501.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (525.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file httpunk-0.2.0.tar.gz.

File metadata

  • Download URL: httpunk-0.2.0.tar.gz
  • Upload date:
  • Size: 305.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0.tar.gz
Algorithm Hash digest
SHA256 6edf8291cc90228330867e8ad826113b313c0c30e7f56247121d9d0f0e8e7685
MD5 570df4f6c74a152e86cada8d2c0032f9
BLAKE2b-256 e5f88423882497aa74a7c95876d0096c0e45afbc0edbe5117f79561044979b5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0.tar.gz:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bc3b134f710af58084db6060bd35ed4b86f4ff5e2516846d9b34683a944dd895
MD5 d1edbbacef9db5fe02096ab5eea0d230
BLAKE2b-256 d3f0fecb66b38a4058e83f6aa5352c6bc00627f68408cf22af60601ccd4eea2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 396d3f7ac89b4ab21a0e2743de40454a24b1ddd5884b2f062d2cb573f4494f9f
MD5 6c6a6752dcdcc56800075a205cd92926
BLAKE2b-256 9c4ca33e85910d14de2ae401bdae90d48ed767aeded85bb3c7ae4891371c414d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 611af224c55d3eca5286d07ce5d7f643210d5e4ad3fe55b96d225c215560f9f0
MD5 2d3ce7067dddce72dc8a8ccf238e959e
BLAKE2b-256 3437be6f0e078f5c8e715b2da52fb39a422190065bd8f4a2d7b540bb62f3fe88

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b37c2ea3247e8ab6436b79b45bd1f773bf3a0509bee269a3904c668eeec7701
MD5 d0f04e7dba078f77d0edb0aa98cf59e6
BLAKE2b-256 f4c92564048a680ad740c56a686965ea23caa374e9d60c513dd27cd82de25f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3737d17e428823d28d517e73d5e8430011623aa8f2022f05d98062784e76ad0
MD5 7baa409b1d096cc6a4ce8b853e5049a3
BLAKE2b-256 287771e06dd2c6591d9532fcef9bd466cf42ba4075e7fd87e9471c31f5f9ca47

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eceab2d94f1d3cffd07d73d82d969052728585a8644a68fd4b6ec88688732a11
MD5 413078ecf07f9537ec6f443b583436c3
BLAKE2b-256 aa1f9462c3b3cd73e53a3e6b89a2b289e37130171d39fc5629887429c6f3c88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc69a97a4bc10751c0ecc0c1eba78cc9538d67cc80f3e26023b3c8e7a348dd5e
MD5 0a1188f88479fd34d17d811341661d66
BLAKE2b-256 3263574ef98541fb87ef9b70359ca7889b6be1ffe8d52bfcacf740394ab5d566

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8bcd5fd447c06250446a039c413bf905a03c92e22abffb5f725906e46647dab
MD5 828474747b812b0ddef977dab1c7e61b
BLAKE2b-256 a7c9e0d9da219e14226e45a92584bfdf6a246358606f7ba02a32a8022f283a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 455a16aefd07aaef02fbd2e2f088a551adbb34db47d29465a3e6d1ed6a615e6b
MD5 6a4fa1eb0b44e92f32f8e2209bb083d2
BLAKE2b-256 ebc7311d5c7d42bb8bee5a80af0c755344b4f6cfe920d8d9959352bd8da3f275

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 087cc592dd420804b67a8671168236970b517326faba834f867c1c6a8abd700c
MD5 79d1d4081175b496e63ceefca73c5099
BLAKE2b-256 5245ea8a77ab7d6a8f739857f75ae4fa52c642cdaaec627703225b0ca4da0d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 440.9 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 3b069d0b9a43b954f3f940a7089c90340f2af16074a4bb4862e5f7b6eca12593
MD5 c120675dbf59f74cf840799687e1778b
BLAKE2b-256 d01fd845b1a332f922b206d530e73180139365a1cd2582c23983eb6a5a262538

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ca701173d29946611debc54b67aa10521c6c32b71707bbecf236ed8162e56d3
MD5 098536537201ddcf893befcbaf3d469a
BLAKE2b-256 db9da6eaa9bb7997e359c95c095c1c5ee880208f4065e62ac2dabb8941856c5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 27fe320c917bd5725a44e02d3aa155f32595071981c90a60eda6db006a7db01e
MD5 d83f4775af515d3bd73d6407c0e3e2c0
BLAKE2b-256 61d158f58958a96d8c298b96f85887dbbedd0fd488740f69e8ab41fffe3541ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d2201c1103f1ee2454c3d91488a20ff4492755acc9ece7681fa21060b36ffda1
MD5 94a6561a97fb04d8ad4b982bbeac56c2
BLAKE2b-256 46dfdfdbaed3653d0b31ecc182325c4f05b8998937c2cf94fa1688f6cb738885

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 318cacda0d77f9c53e0f00107c4615588510ca004ec871fc2a78a50039d94323
MD5 c064aebf3905cc68bbd8daec81b2461f
BLAKE2b-256 be92c6a566c5c20f9c9c81de6f1fcc8718b509d0f4672a37376a7e2e8e55ac60

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ced9b04292402e48d3d03d8c38b684041f3f87aca5edf1c0cc3595f96ca9cae1
MD5 006240e137e89ed32b66642ffd5ec8fc
BLAKE2b-256 fa47df7245547af98979e8bfabe5b8d5d87306d88b0be1c791e5a967d6814a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2831c9f68528efb863ed41a0cdf0887f9861f2049f8955b56dee830aac15274
MD5 237f0b17c7daa267c7595c4d0ad9e670
BLAKE2b-256 85b05eeaeaee99f118829a6a6bf64eff1e2bfcb9ff4df30bb031897ebf17711f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b3f416034c8df41a3b96c5b00efd36f6c2a4b98dfa23b145f0c2951d8a8a8f0
MD5 5803cff60b5b792852de25473cdd18bc
BLAKE2b-256 03434da998fc6f717255b56bf8b97b36269916a299a5258b3e011c6de453aff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef2fbe8fb51a34320b74463e77905bc2fa52510d9f3ba5d36e615189f431a2f5
MD5 e673f7c316bb1bb9d44e0c00584bb092
BLAKE2b-256 4b86788ded0c37b6f7e11cc2192215d7347a0ceabe458b35b6943ae4ace9480f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a81737b5b0816a642360e72a0ec7176725fc01ea52a13ad10c544fc2a5a07674
MD5 a627f1fa612ae963f3a45ee8baa83375
BLAKE2b-256 4d3dbee262885bd03daec53a81092bf23562eebdd8bc3989130270ea86d7a942

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315t-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 443.6 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 3e63891fde3753b58c8706db0c274a278f72b61aabd540e51e52cb2384b85125
MD5 7161dc90c5474257120e32a2c0c6105d
BLAKE2b-256 07e8956c1b3a74eedc2871cad4b0228154aebd7e9167589752772c661a8036c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5934467134a11dc9adcf94a886ba74a0e9541431c0beae40a6f1227a7131be25
MD5 fa89dd13d507b883e86c61227442163f
BLAKE2b-256 1e94d75e8b36d2f1f0cb8444521389654160000e262cb6b37cd411b095b9a941

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1104a2f8b7c6de9c0186c8e0e72071854e179a341b9158568e1caf30b5d97279
MD5 eddbc2b1e6e5f09269484260367d8686
BLAKE2b-256 0fe9b025fea09a9445f7011473410ea312b655c43cb40106b20e5088dd822f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 48bddc1f0dc9a8c428bfca11e06231f1d66a82a754577412876c0f8f46c06a9a
MD5 9334aa00966fe0e66c66d733d13bda77
BLAKE2b-256 b43b7c9d03d08f39d64e2f9b919aeb78b9ec71733876b6130759141f776e1588

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95f33884d31f78a2e385bb8e0d15229dba81095b01031a1778d9c47d466310dc
MD5 06f951c004a6ce1b0110337f230986dc
BLAKE2b-256 7a18c566bc1f29f407c18682db14846277323d7cf5a11b585f8bfa33f3a2695f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26315fcb9791aae6793596b30fd94be0a582940707e5cd2fa60836ed9f1537e8
MD5 9063b61f2fcce3a6282617a263de0458
BLAKE2b-256 d182717b4619355180247370519025e12b2af5ad666a51e989facc53be3b43bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec3b175a07d266e13fc6c0c356aa9d48d57304967d14eb95e00cc05bc6b9589a
MD5 22368d4f3dc5174e4b9e51d814edadd3
BLAKE2b-256 10b99486eda7fe3266c765c9e4b84fa84c63928c9e380cc2c09a17ec6c70f359

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bfaad1e18205601f14b886ed2270df807861db6621eeda9a8bca89ea96a73cce
MD5 2055fb8022ab425e4598ea13bf9ca771
BLAKE2b-256 e7a7709a4d445fe9646c66284300dc8864d5ef27d7dce0576dc662cd6244ab4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91556192ae778f8c470b951c75fbe85440d2a7ab50760a05349468bc2e28aa8d
MD5 eb229b4078cdbee8398e93675b3bdbe7
BLAKE2b-256 1402768ced3f511cad988b2550478579121682d0b05b6a20a3bc001e1109e83c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e48d9dafe23afa755a674f71d9c40758895ed711a1bb2fe2f7dc2a32f7241bc8
MD5 37a01b4e60fd47fda64f7a34d9f90e9b
BLAKE2b-256 23f508cec6a6da593e6d557d30ca543f6913727e04e5cf515a60921081a51392

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp315-cp315-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 440.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a57a5c770036b002c1b6b75632a654983c7dc996b4778f94535f9e00d7848387
MD5 42038d3942ec92bd2e9ce4b18b0fe34a
BLAKE2b-256 208d96cf8e1e26e4b859a22100d97a39ff50e673522bc42a236aaddac2114789

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f93543365e19c0968353ff462926691970f23847bd68308e2b0e991a6d4fa8e3
MD5 fbfc73fb3e7e61ff1f3fcfc620ef61eb
BLAKE2b-256 0dc5b440f5509832047fae3d1dc941031367b76438f18c4964a7c05ce6bb99dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 55bfe13c2ca581c6d246651bdfc845d506c78ee32a1fe8949f92324ad5ac0861
MD5 638fdd2db9c2e2315810880342cfaed2
BLAKE2b-256 02a8d58ae9b902438d3f9a5f92c3e517da12caae64eb45ddee740aae9198d662

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 335caac7451e8ad1c0e6ce9654549bdf4b5bf1369dc78211cc73bfac1ca1454c
MD5 1ee7a8af458a213eaaa80d5630fc7734
BLAKE2b-256 9710a26e15693681e6fb6079c70d5c61c288b4c53b0411c684330df531ba7a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 686f45996b67d663976fb67b72c982a4be82bffcbad03a21af75509ceaf381f2
MD5 0b2f522ff39e0ae4b9b8acf988c4b540
BLAKE2b-256 0d8115115ae6a2e92032054d9ca964a44cf0c3528ff0b57ab35f6dfad786848f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3815f03827878df40f7cc6ce88eaabecf50428c0e37203d3b8f478bb1dbccee
MD5 15ccfc55f6e9598e64cb8a4bc1ffc9b4
BLAKE2b-256 c6ea95ad341df54befaad28b77d9dcd1067ca1edb835e70580a97d4ea1547782

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 917fd527249a20bccf75fbd1e354583ce80cd7d46750ae7076c8994eede78ad9
MD5 50d4980ccc4cdc7bd35ada01450410ce
BLAKE2b-256 86c6259334a46992e77b78d53d35c6f2db809094992259d9234015bdc14dfb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9373c87099bd91215dbf9e36a4c9471165631bbcdf9526377efc97d42426e80
MD5 d18db8436a370f03fb350f8814ff94cb
BLAKE2b-256 ea757126f14b446527b83f69141da52bc456dc6f41733349ee2066f4b8556da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70073322914b6dbc25e491513cee5df8b15358686231f67f210aba26f06c84fa
MD5 8b9190cc8b2ba3f33455548a7802d6c4
BLAKE2b-256 309698a2597830bbe37ac8de1bafbe5ff3f53b53e1d23989648d6d0f5c867c0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a81d699e0409c3b76ef28e2ed6a5d8b22a5cb9599717ec16d2851b0c5f1b199
MD5 e425c20a3f79820837fbe516b2a3a85f
BLAKE2b-256 d34e8bbadf378b770b314ba38305356692e1df6d343ffbcfdf604a98339299e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 443.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ae2c81e727eb04136e13e478b944085272cb81ff08fa0d1450b334ffa12ee14
MD5 2f64a4de580371b286bf7484c8d73cc0
BLAKE2b-256 d31552129555362ae24217a81db5490267a2456da380d20830de5a7fe5a4979b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 153c1754d37d0c7841f1b116f75d0e1e4d8d3d8ddd6f6cbfbe8f964db02ba587
MD5 1f16405dc6296aab68095217625db916
BLAKE2b-256 44df8e22d6db57db84878bfeacb353b470142aba9f6028e6cb19be8eff8bb809

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7a723de0b7ca98306d21be9f9c6ead4c51d4937fcb9f00217b66c86ad877b5cc
MD5 dac007a3b7431c28f314c992c2ca8aa4
BLAKE2b-256 9521d0570b0980d9eb3f877c11f858e52e6d0c38f289a27dd27ebb58af493340

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 592dd2e84ade451c2ded7674add9423be4014767873b6fd319a66a2952ed611b
MD5 a1ba2d9a40021c4417be0136a7e9ef25
BLAKE2b-256 b2f6f99e2d84543677a14a41466e63f7552e0b933aef21ce22380e7fbf03a23d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f327795156470fd42dd77bd756e4fab761007dfdc3ecc3c5786a2bc770d85b1
MD5 6985d316c48408644f548bb364ef8322
BLAKE2b-256 bff7bcdb057c137b21d1e360a0b97d959e51f774416cee63eb7c547a870a4965

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8956ead0a15abd8b5ffd291937aaa7501b337d06a39ca6d09dbdbfca6e2a5180
MD5 c47dcbac960d7b9634f65ab060f6aa9e
BLAKE2b-256 535f4639214c8c89b6b750a329012b7cd6ecf79e90982c5e3a5ee546fcd30bdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4a01e5905131e9fd9e4c2aa21172c418d60cf99aac04923c73fa2ff8204852a
MD5 ba47daf306b6179a0ef486f81ee6921a
BLAKE2b-256 27de9cd96b091aaa9b21ebc2002bf2c79ffc14c0d7c8346e9aaa6d576e0da11d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1d9103a08909f7bbe8b8e80177cb1c7b44d14d4815579c7a93bf8b2430254fc
MD5 6b0bfccab00147a4625818ea85dcda00
BLAKE2b-256 b55765482c05a09c3e7186e61f1b006e17f5cdb6a049d757bb8c770510e5f55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a88ee91cb006166dcb1a51cb307ec47c3130c18de735b32ef57492f294989e
MD5 6dcff09b0843f740a94f37c332890da9
BLAKE2b-256 1807171242c9ae703ecb425e27b2f9799f6303397db6149c923e528ddada70ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca306a595106ca8e1c9aade5d34c0f824e8d271d1c88b9eb8372c4767b760c09
MD5 2c19ccd8584f8c9d9aa795d758274923
BLAKE2b-256 f5d7783c7002b2401bc0262f535eb9a2e648b8f81e32cfa91ad7b7b15e537e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 444.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 03f846c8e1df2057b795b2349883140ab458deb6ffaf058d7c8abce7714a7a52
MD5 3d93bea3224f133393ecbd663bcfac7c
BLAKE2b-256 47f6b50533f6e166a2da6af7559929def01f116d09b5d34e2a06818e0d31da6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 65266049a3d357b99343a6622f070e9419d68b11b7f0ff56fb2b97ef7002f7b7
MD5 ecc83628a8bfe930edf1d36efbe95367
BLAKE2b-256 28c5fcc398f230d7fc5ecb5b842c8c1cab58354b9687575f60e24ed70f9a8997

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c42ca64b029d21f8c108470370c4b812001c9422aafdb4b0c1b3ac7314f3872e
MD5 a008cd875711fb6464592ee118367650
BLAKE2b-256 d00d951a07cae4e3fe4b3e31759ae405369515511c24e1bca87f679eda361c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ba0a14c6689361fc22318a4d110957c4ccc8bcb893fc3df597086dc88edce015
MD5 c142b0145fb73b3fe2a40f1da47a5ff7
BLAKE2b-256 1791cea9cf370ac2943208d4df58413157671f4ef161fc47dd6b4b321673b7ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d96c3e6ddd7d0b285ae1d58049ce78f57e0b0474aecd64a258afa7ae722bab0
MD5 989d5e9ee4f6436e7f5e3d2aeb467d0e
BLAKE2b-256 3783cdacc36610e46b2b62d541e5b7e3583bd039a078f065570b6599a1825be7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b33257966649baae23f4c81f77eae39c81ec427aceb9aef573bc9d2c779c39f7
MD5 dd75f537dd6a9a6fee2584f0e0375b51
BLAKE2b-256 583d20e37af0e2dc543474ee6fe851688c138c266c7b8bbe954739cb75d89d66

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6119267695fa6bb45bb28e755635efd0bfc9cbe819832f744e17c4ca1a4d425
MD5 107b7255080cfda296436dda574b2d89
BLAKE2b-256 8071bf82d273cd57b24e9b9c9ac6dfdd6d5a414e18ac875ce49512754b009cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e017930a47ede0aa06139528bdfe2e63f6932db1f2f04cd8b11111bdb7db8b4c
MD5 221e72b35570b7f8c944dd5764f135ee
BLAKE2b-256 1e55b457a9e8646842781f0b845fb974d6bcd69c52be637f0156ae12ebf3c466

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7558c4d7678fbd9a0d13161e259712a24edaaacdfe9014ffccc8f6044553b06
MD5 47dbf55feb1c7bc10792ac09f9e15ebb
BLAKE2b-256 2b532a642b829931a3e6386457bd37c64e2b13ff46408f4a0c966de3474db015

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c770cd326a5d2557b4dd2e6437038639e60f5473cc36989bdf3d5486fe80834
MD5 c30d18784c4d0e9fdee9220dd47cdd09
BLAKE2b-256 fedef958451bc4742b49e776f6521229f4d746934cce2be1708ac15a08960a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 444.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96419e67d3777dd79329dcbb8b81de32f2e790dd556fd456fc22664647afb453
MD5 81df420fa28f7fea2ac78ed6e8b8cce3
BLAKE2b-256 26715edc248f16c0546401cb5798b98e652ebd32724e4c5b3963921c5007f619

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a75b1bc9b4f3979f23046fd1db8e6cf2f4ffc52572c465774ffbc0a800a7e8ab
MD5 d0acdfa122b4a42dc76a486e1eaa0b4b
BLAKE2b-256 fc38e13553abd49215b0a30d720faa5b3af47be85271145b9e6a7a89aae3ada7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b6ae36e766ee7a3186788c046d463f9365e26979a1c59f4fd62720ae0b2c49a2
MD5 555bfb2454598fda11d7ef79cbe42d97
BLAKE2b-256 df5d3aac23953e48db375421921d343fbda53fe9d65c9d09f5ab5940e11db80d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2dfc4cc2962c0f5f86fa281cd3fd5f807664795944a98befb88cf113d99a5e3
MD5 02975d9cb023622e64626d8bef47f60c
BLAKE2b-256 da2c50fd42429e4fd1478d8e015c11460207c9fea89e55ef614f12a4e9810317

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ac32a34ef659d79a4a2a86113dc87e2c0b32ca16deaa2a65d04f5c6d0c78161
MD5 ca9a923f260ca940a3ca3728a27767c5
BLAKE2b-256 bf84f2109c962a0e175b3c7c77500c10510c53a5b4f5510503d9240836399922

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e6027c6767cac2348f4e88e88a1d6f6da44ff3c2a838e0ec1eefd3ec478331f
MD5 8a5bf3feab3047fb6a5c38ecd04371f1
BLAKE2b-256 63a721868bc3acf2cec412c82c676e84ee005ed7903108e8ffcb7c3e8a6c7ee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff45173450848f9cc8196e5000375e080de25682f9b2f8102b9dc7f38304d8b8
MD5 0d3d58f6d42b39b34f486d0d1073e07f
BLAKE2b-256 e746cda02b64b772104c10704dff3293683d13851dbf312abc6afadab75944fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 38011be35b09e6369283e3063893ea7623413dfbe2a5430d8240d0e524dde7dd
MD5 3615da8621aa9f85a51a44a081985706
BLAKE2b-256 a557a3b00e5585d086cc601699eb9b6ffe5e09e13509883b7d88b8374c386a9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dee1b864ed37c56fdd6693d67eee5a4af54bf1dbe274235d1b2ed5143fc864e
MD5 c767a667e5786dfd7ece05a0c294721f
BLAKE2b-256 5ec3e3a260ee348d8c7b6316c757c8d196197ef9a463808700d79cd6153ec19c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 899ca898681d2d1a9822db5a9d4187402db913701b961a26285199aa3631b1df
MD5 acf377d9d3742ddc116c3e0c2fd39ae4
BLAKE2b-256 6dffcd994f7f2787c7fee54e1507c6d5b1f747f84a656e74d15604513cacfc78

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 442.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9111fe8973b71156067e50cedee420048a1d52df461c1cbc7238e328f1654a86
MD5 56998cac500b5efb3435376dee52bba5
BLAKE2b-256 04c62c7fccbdc2adcd407dc7cbcc0bd6dbb136e79ec144cc6438120b8b47d8ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 153a972b7e764b60274a2de45585db5a5774f1ca6eb782047517512f1f656b1d
MD5 0733dd5bb872e83f73caa25c23ac1ae9
BLAKE2b-256 b352023619d2b068ff6b1efef07e178df545f330233782afcb89280a2d7a2e68

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 534c3831090a91f6111e3eb800d10f37980b106faa0ed0b3247243d90f23da37
MD5 089dadc2c90ad6a04e5d35aa9b205a53
BLAKE2b-256 34576acac98dd543f90628aa3987848dbe47df9b781020cd2c2df638ea51baf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3c95ff97250d013340d3e1745f8f057ba308c492cfa47d771ddba671ba96d46f
MD5 df4f3244b7c194f9290d53c293f12ad4
BLAKE2b-256 ba126d84576cfafc84fc01ac357d88864b9e28ec2c1ef1bb735861234dcfcadf

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e2236d44b68ab69bb212211fffdb4ddc7b5e5e8b19c09c75fe5cdc4a499e212
MD5 89b21aab6aef41d3f2a843b538f94cbd
BLAKE2b-256 6e6b0f171f9c62ac23e33a6cab354909e30096cbe48cab4bbacc3c4ae0dbacdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 786a032655de8eff30418cb67bffb68c5fe96ba60a1f5b1b15ca1606a0f2ce6a
MD5 3f84280fcf947fda8d3932c72ba30a8a
BLAKE2b-256 60809dcdd055378d068bcfb76682c1c23a61414f848ba15b63731fc22b6c901b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fab3de6fbee693296e7deafe6a6b78df13dfe95c8814e0d481d0cdbbc0ebd7a4
MD5 b2c13cfd7e805c808ff721b1a9297ef5
BLAKE2b-256 a2c96b6ae238a7725b94d7e7509c2ca328aaed3e4d7db5e01e45872e6d7172bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebe75540b4de12cbfe737c0d34b8717024484ad437b03248e4f6bf4d495f606f
MD5 9e9579dede1612c46f96a99aede09b17
BLAKE2b-256 0e2bb67526b41af9e5fe2f0b1cc49d3e893392e1d63d6517c4f5d9b6dbad8713

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4922a767d6c7e08f0b630081cc2127ff0fa2a807b98fca0212f9c38d0a59e8d
MD5 42a5cdfa1df261db6870a225f744200f
BLAKE2b-256 a73297a845fb174594ac348b1ce9f364ed164bd84ab7b429c607de532d765900

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab8854fded642db1f7b74e8e8ae65d73ea5a1bef859caccd9bf571c427b2a368
MD5 cbde78de9a6c7fa36a234af11de6a01c
BLAKE2b-256 3f11b7721334b2de32937a1aeace08b8371c5981ef28523ac31cc848eb0e89da

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: httpunk-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 255af3ca200635c1a160e9dcad7a78b3209d5cda47cfc653c005c5e0b6358bcf
MD5 c385ec351c56cac646837fe13d802c98
BLAKE2b-256 99ff713670c54d143aac9cfb3f3b88ffe25f3810035f24b82659f60e381859da

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a188b04a11fa5f61eb606ac768a3ceecdf628c04a1a737b7c81238087ca93d02
MD5 845d1d8aecf2cbc5d803ce7a87078b11
BLAKE2b-256 6098d73a89835e036344f9fdb9de345fe71de2f3818b42845783cd3ac3f0ed7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 43159c1ef0b66e77f07fbfa626e1c97953749e017cd917fd82fd04b801df27c9
MD5 725bb4610c651fc704dc3a752a35bff9
BLAKE2b-256 a864d074211d73fc3cd1da14e58c4662f469d8dd7c00394b74995c4d47d67ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1672734400e0a2d7d620dff502f09e4b2b66081d71c2a52084a5555ce63a91e5
MD5 b5d417de92187ea4d23fc1ccea4d0e33
BLAKE2b-256 7e3508742934d64ce2c3243c73339d2eab49cf90ce2d89d9836c6c5b5f4e544d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7517ae4f06f809d6af0acb33d1655fe48d0f8f2f6df96607230e523168d28219
MD5 890283fd1a7efa8ed4b979fb78806565
BLAKE2b-256 85d59cb91d54714d70d2848b8b36eac3c3123b450a25a76c3b145911d13ab18a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb9a17be028869ff683181effc023054bcee2404d4cb4fe90b879b15b3f3a36f
MD5 ce788e60d6d708681bf79e6f105df054
BLAKE2b-256 95db6a1596869d53ec6fe015829ce6bb88939344a3d9cc318a64eb1a40f67c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd840180141b03d51462ac067d5bd24836d851770cd6684666e76ca41dbd5b91
MD5 602792f4b14b8de26e30f160db1e9a21
BLAKE2b-256 c1dcafd51abfe11d013913dedf8d7f61e7b0ebf3ffe7b466fc24ce64c54829d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 126387cafdfb7bf6cf8aabc1931d914a905a4e0173d53edfb8abc092105f6e43
MD5 8caf2880e23f739fb10835964fffe140
BLAKE2b-256 ac2da2e38fddb66cd71e1286b87dd96d9c69d8a691a0b2c6c0071c6a8bc7bd35

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff5dc5f088ea3f7c6c64dfd13b59e5ba987ef7e7d18531ad65e2cb5b4e2fd14e
MD5 ffc175380b4c08acf1670a549d4c6c81
BLAKE2b-256 534a26456ff7975db4dca989bda33725b88cda8647c738978af13a2c0dccc17d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa9c6f4ca5884aa919ef576229d283c18c3440efef2c637ae658b3df73abe4c7
MD5 7f9f2e0aa365160e049a70c88da64006
BLAKE2b-256 d78da52fc2bc0d3f0bc180817d3f8c265de289dcfd890efa8e276420dedccdb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

Release history Release notifications | RSS feed

0.2.2

91 files

0.2.1

91 files

This release

0.2.0 This release

91 files

0.1.5

91 files

0.1.4

91 files

0.1.3

91 files

0.1.2

91 files

0.1.1

91 files

0.1.0

91 files

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