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.2.tar.gz (312.1 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.2-pp311-pypy311_pp73-win_amd64.whl (451.3 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.2.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (770.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.2.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (824.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (716.8 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (545.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (537.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (586.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (533.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.2.2-cp315-cp315t-win_amd64.whl (445.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.2.2-cp315-cp315t-musllinux_1_1_x86_64.whl (765.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp315-cp315t-musllinux_1_1_armv7l.whl (811.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp315-cp315t-musllinux_1_1_aarch64.whl (710.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (572.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.2.2-cp315-cp315t-macosx_11_0_arm64.whl (497.3 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.2.2-cp315-cp315t-macosx_10_12_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.2.2-cp315-cp315-win_amd64.whl (447.7 kB view details)

Uploaded CPython 3.15Windows x86-64

httpunk-0.2.2-cp315-cp315-musllinux_1_1_x86_64.whl (767.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp315-cp315-musllinux_1_1_armv7l.whl (814.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp315-cp315-musllinux_1_1_aarch64.whl (712.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (574.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.2.2-cp315-cp315-macosx_11_0_arm64.whl (500.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.2.2-cp315-cp315-macosx_10_12_x86_64.whl (528.9 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.2.2-cp314-cp314t-win_amd64.whl (445.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.2.2-cp314-cp314t-musllinux_1_1_x86_64.whl (766.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp314-cp314t-musllinux_1_1_armv7l.whl (811.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp314-cp314t-musllinux_1_1_aarch64.whl (710.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (572.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl (497.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.2.2-cp314-cp314t-macosx_10_12_x86_64.whl (526.7 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.2.2-cp314-cp314-win_amd64.whl (447.6 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.2.2-cp314-cp314-musllinux_1_1_x86_64.whl (768.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp314-cp314-musllinux_1_1_armv7l.whl (814.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp314-cp314-musllinux_1_1_aarch64.whl (712.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (574.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (500.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.2.2-cp313-cp313-win_amd64.whl (448.4 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.2.2-cp313-cp313-musllinux_1_1_x86_64.whl (767.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp313-cp313-musllinux_1_1_armv7l.whl (814.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp313-cp313-musllinux_1_1_aarch64.whl (712.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (573.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (500.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (529.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.2.2-cp312-cp312-win_amd64.whl (448.5 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.2.2-cp312-cp312-musllinux_1_1_x86_64.whl (767.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp312-cp312-musllinux_1_1_armv7l.whl (814.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp312-cp312-musllinux_1_1_aarch64.whl (712.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (574.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (500.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (529.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.2.2-cp311-cp311-win_amd64.whl (447.2 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl (766.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp311-cp311-musllinux_1_1_armv7l.whl (819.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp311-cp311-musllinux_1_1_aarch64.whl (712.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (540.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (533.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (582.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (505.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (529.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.2.2-cp310-cp310-win_amd64.whl (447.6 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl (767.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.2.2-cp310-cp310-musllinux_1_1_armv7l.whl (819.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl (713.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (541.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (534.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (582.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (505.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl (529.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for httpunk-0.2.2.tar.gz
Algorithm Hash digest
SHA256 6f42e0d5a95de8bede504890c937d52a6c67d4463f29cf78d2707272694ea606
MD5 77df79de619fcca866ce122cdc146a8d
BLAKE2b-256 a8f7330ccd02618b009da28c889def3b50cceeee0027a80c6aa8d86d091e1a16

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2.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.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 59d0f0e67a9a66762e60288b8ba81ccda37a86e0fbf6106f0ae70a12fe944f3b
MD5 58fe6ffd5961b02f4c173c85e17de5f0
BLAKE2b-256 ed607720ab7d54101d56b92f831ced20b2517c819c2b8e69fc0055701b873568

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 971e7056298752f235dfb04b54e88387876509b0aec3b2744b8a05af351a052b
MD5 a1eaf7b0fa2fb847f1fe727c97ad267d
BLAKE2b-256 3b9d85741c579604c77d623464338537703d2c25445ec526223c86649e852f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 04a4f59d05f61a0304f6b2555d42e67588fe0390edb6c78eef4f754b2d373b57
MD5 4d7b685af3bdeb54b9449a2218139886
BLAKE2b-256 71e58502b0d4a4394a4be087c3b3f8adb369029d64754e00eaaa87c30e7d3fe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2edc2d4ce960869e6914fbfd734e5cb4edda32fb591befe02bca2156de35cd12
MD5 a193149ac30ab18a38379cbe3c5b703d
BLAKE2b-256 da3d0d25eca6826a6410ed5cc6243adf3c46e78483fcebe7f93836079bd6d835

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdd41b7ccb1fb60b8b8f0b475602c2e729bd53ba49f60b006ee1586d66e0d2e3
MD5 aa701fcc5e42d1e2d5239f7a417a133d
BLAKE2b-256 6aa781c8fe61cee35019931c7313357b382a0778ec41d91f11f5d9f4dc86229f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 569eb57594658a22a9ed7c2fe328c469c59a910c505a037ee3b51b84fa1ac126
MD5 431c3c5bafaeefeecf6a92dde1e159ad
BLAKE2b-256 173b7758616d35a307d243fa4f3f6427b3f18ddb9a87dd7dded1e4daf784dc0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29b34b288e4b5eb6bd82cad2dfa0f5f5b961fa3d09231caab9137344985d49b0
MD5 714b420f00346c9d17f2b06b46324652
BLAKE2b-256 fa4b146fb45443e6c73e76d1ae687ec98871aee8487511912673a9843650eea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0801d1e29919d10d73f586230299429b80ee683e33cefd4e22b0e0635db51692
MD5 a47cea58fb9bc7fc42c7dbd7c40a1c77
BLAKE2b-256 70dbd054e51a31e025045e29f475a3d2f53e9b912205baf4189db35b97a89183

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3affff43a37c38023696bc51a89887ae80ed91789e9634cddb55d5e9ab32e77e
MD5 103797c9e0cb1fcb7d4952af888f998a
BLAKE2b-256 a5f82bb3a0e2ec458c52be9abcab2239fc6e99aa0140f7e087dc25c62072d94e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4781dd2fe2f3e2c175d27cf5847979824ca38909a35f819b8988765dcb93e2b
MD5 a31c26d7bfe918d3fcd265d6869b7e08
BLAKE2b-256 b8703d223bda416e52d68d52fe470274c9d03dfa5dafaeabaab889f69f45bb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b519b89a6cbe4f722e7fe3545a87994ca634648f52a506bdfde1b01122ddb21a
MD5 6370ea2747302b784ac25f4c44c1f606
BLAKE2b-256 2ca5521201e52b5558ed9d4e4c7b9f706b34183082bc8d34fbdc7bba8d012189

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a7bf917e8dc0140ab1da85ff282dab8950906f1cfe52297a85cae07d2954351
MD5 177244086843bb07b9f553f41b7f8f7a
BLAKE2b-256 e59156a27840c224a258075e2764d7f0ed59199a42cc5e601a52d704299c277d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 365fb2ce84433f17e82a9006ee55ea095df95b341317cc09309945b9b7294c31
MD5 410b073b8ec764410cdfb75f7d6d4046
BLAKE2b-256 e1ec6c95fe2877735616e73f300c027126aa5a9e7fd0968b086bc3064ffc99ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 22c5d64fb4e8ce3348ebd0c3afd59f2efd7f5725600b615d897979f4e36cd09f
MD5 0880865dd2ff7b3c2169d248d3c7796e
BLAKE2b-256 9081692e866d23f6d1b626039597c458a47425395b072df47c47f0fcdfcf5e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 991d0de9a577d8b7529a58909b1869b6937d6ea2ce0952d96e5df1eb0a5aed49
MD5 436b7be86a983dca0d1c0e1f78406ce4
BLAKE2b-256 b8d5f5db62f033a5f1abcac2df973dfb53a1a6ad1c1523df02ee0b24207de257

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 edec902667541df6f38fa44b5cbe5ddba870634c88b742109408765def883825
MD5 2c98dcfd58cddd0da9a241a387131eb5
BLAKE2b-256 3a54d1ee8fa11f324e6022d47ca03a7d3414614b65875cb3d5dbfa0d93334e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45535403f42358b03b24538f018af187d471cb938b280935df427c6c6c3f49f2
MD5 1e29b5bb3845b2c543b28a8336166050
BLAKE2b-256 8d091fa6505c2da7ccd5acd76832433f380ee618fcd85517695c6ad53dc4be7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c9a984152ed122f49f8c6d7d64175f52f4145bea861734227ebb13343332d1a
MD5 d2dc33664913d6a6e565b3e184ffbaa9
BLAKE2b-256 a0a5d5740139b28c1f71bbc23fed689f43bdcedf1cc5227d4a0559a3dd0e5a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 219b179a305fb2b2bc15452ed1be029fb72cf98bf7d50cd51f7c069f473d42ab
MD5 202b1f40697edea6a14d5514d2cabd5b
BLAKE2b-256 68258ba1141da08b86ce3a1e80088e5102d2ca187b96f07575e1f477b9d4655d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db237267253d25eb01ad8e044bcc827711519d1adb1ee91c7d30f6212a616989
MD5 2fef6e87ac76831290825a6a3e1e36ab
BLAKE2b-256 3bdab930ed4b6162964c2f74cbe2c44c785cd8e751d1e5b26365151204bb8215

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 dc815cf86d73c44f64a1d6b254b369a8b21dff2c23c2efc515e0ec54fbc67dda
MD5 1ca299b178cc86f4bd398feaa00319fc
BLAKE2b-256 bc1bb0b8be6ede7c55882cdc6595e4a78679037b5e3ae3d59b40fb167af4c792

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fad12456dfc3b3abcc23b650aca11d2ba5c404f530d8ad7f4e7bf4acd6de834a
MD5 522ab9a32f264c6d6f71ee60fe2d614d
BLAKE2b-256 089cb6c8bb77939db60572273cc82009b1349c6eb9d9f38138331e6b94d1cc52

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cce2a846e34204e11a3aa48f053b246d7a67bd53caa36dd67a8e265150ac169b
MD5 9dbfe7fbf42db0e0446ecd3fd1cdd6c5
BLAKE2b-256 4ef81168ef74f214d6bdfe734d2a112d8b1e28e92ff1ca35963cd2c1a5cb0748

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5c68b7c67875c85066a7f2f144724e2a9cf98c5362121bdcb00154abf5c7146
MD5 955165f3dd22df1c4509a50025ec1696
BLAKE2b-256 3a00ca01548fdfbab77b59e51ce1e4adfd53a6bff8cb25c17a523f672042fe56

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17470b13057295aa7872031a967dcfa77084e8f383ff36f5aae8ebe85e79fc9f
MD5 673363c6aa676f67fd8a65332523ea75
BLAKE2b-256 502d10b84549969fa5ac4593f340f4c5663b387b9f46a47d56971fb2ee8b5a06

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0167e6c05be732465f22941030ae89c139e2ab9bfd966ffe0eca67f7c220b12
MD5 5b6d5d8fc000790706a09b36ff90e0e9
BLAKE2b-256 29efffe2640c3226bca8c6bd47ebb0a6e767847e1166ac29f8bcafeb1b996d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b259d2f5459ebadc4ff8a3fbe1a603a73532045815df0a8e03e74b234b656a6
MD5 c38ecebbc35932c7a37d9e0a5bddf6f1
BLAKE2b-256 fa27c257e154524d8cd72dd486e0610a135066ad00ea347f6876700e0a208d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5983c93c244c134133e1a11485a82d9f20cc7aaf17b6fba28dfa484d60daa25f
MD5 dc200b46d620e0d44be7f75ce83cc9dc
BLAKE2b-256 fc9e18defccfef7ca8d29decd3278a8e9c98ef2635701ca4d5182baf21107063

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b5f569ea8e7266a5ca08c6d4c89949df7c2987e9b8def2ae014819db630e858
MD5 f510c3beb29e6859a1dbf1abc77d598a
BLAKE2b-256 d16c49f93694bd000de723623907ec5fa3162f03d983ebd567d801384156d320

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71fedc3b41a1ed4085dc0eab89188b801fb2fbeb2b84d7e5f0a71104e33c2176
MD5 538be2fc770fe3ba93ffdec898501223
BLAKE2b-256 d952488e29f1d336bb4131702d1becfdfd80edc9f70ab09ee1ef77d88923011f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 aae66875b6ba1f788c71f2d72c1d8d9dc9bbd07b176c6f40595550f2100967df
MD5 3b6cce0858a296d4553c3149c6ffcb7e
BLAKE2b-256 ee36d22fe3ce648e5873898211411a885e8b25b9906e9fdbf1478257e364a3df

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c8632a93f13fdbe237d006e1d39901255e46d9593d42548442464543c0208a6
MD5 c7e4ac39556c8e1baf22c79a8c75ee4e
BLAKE2b-256 77a0b4e44e6613bbfc88c88c1e258efbf964df56d807b760ba923c7f60bd684e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5764fc39241dd6b114bd207743b645df9f1beffaa8f1fc092a08d052cc26a81b
MD5 5c24ef331ccf69c59474d0ed8421d4dc
BLAKE2b-256 6313cab12414ae088a24fb1241ea4d70714b7e416f2ef16698b6c31381eedc02

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b884c3e83b946c555eb682c624ef8ec07712bd35f5fa5cedae6cf83eaf6aa30c
MD5 5aff746c2980d8c8fe0a1294898064a3
BLAKE2b-256 0bec507a926a321ede71eab6d4c7ed28beb7832d7596dfaac4066dc3af5480b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac1d496306fea77a5fec144cbe4b982875912024ed5befa508a9a5c7af385799
MD5 6323ed8be5f38d9140874190cb131b0b
BLAKE2b-256 e5400f52f167a6c164ba86a2738084a6b953e5139536ada7d8658e3413568033

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 33be7e19e0352f84e0c7e3a9f44bf70fd99b1fd8451ce9b2de6d061951585634
MD5 6535685ae68189731f2f3ed5ea5fc2b0
BLAKE2b-256 6da07346c528a0adf6b176930e5e26208c1d3fd6da89a8fdd93e948d626aaf5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441d6750439e120b14e140221bb1e1442129632c399cbb32798e62761a910d31
MD5 16e192fee6645d12e1dd767fdffbc8b5
BLAKE2b-256 c212bfce88cde4e5d7aba3466f2fb9d3f81decb2c64ec0b8684e56005578396f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4638bdfa33692ea3ac22151eca0ce2eb7a366b7a421315e0aa08afaa0fc9cb2a
MD5 0a1035fe3e3fbeb57beb5aeebe47663e
BLAKE2b-256 0bbe83aecdaa12439da4d592dfbb4e8ff96f7927b2b717d5e923e8157bf2b0ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2269ab399e7b573a8d6283d23aa9bcaca922a3c0eb46320c50ad57234c97242d
MD5 acccc8fb968deabba737610f2b059b7f
BLAKE2b-256 a05374cc9bb7460270fba760604b7469ac7c688d278832dafffa4349ea353369

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c9df0b63deb686d62a289226d0c5080c97b011e196368c63115133ded966c1f
MD5 a1d7247a89d1b7c291b7b0e2f0a7536e
BLAKE2b-256 862e6bccc8f6e07b3e19d304c8231a0f8cd8c5101d141788330b9d1cff7b0bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aa2b3ec352b69a52e18907abbf06e8be22a79ee066e8f61890c97e0eb90ac421
MD5 1cbfea0585729b7513e27136a5ac12d8
BLAKE2b-256 6f8eb7692617a5fad4b8125c8b46f151484135c95d03a854f555628bce44eced

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1daf2f80619e2c119858d231f52f96ef5a42d32c478c270acd8acdab77ad0e68
MD5 1f6261b4918aa4f0b12dcaa5cdfd7687
BLAKE2b-256 b55f5f7bc6e21ff3aeb0003d046ba81a15f62c373fd9665a16f200fb4e47481a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 990cca5f8114c82c6726c7625e9a997e5041d3b80e6d2bb3033c8d75f853a8ab
MD5 821e182fca159cd2c1131d50435e3891
BLAKE2b-256 0b92b464a7bbf20412de9a45ba9aef870c3a8ca777db5b0a87868bd79e752bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b12fc2ae796b4daf23ff3463e6ff81db5b4fff5d9b5f15bd92afc5fb16380f98
MD5 139f3e1e92e376ff5b2503a30a48edce
BLAKE2b-256 d9b88f6e7e06e44a798a05b815996bed6d8ecadc3d2c67d67a7c85ea2a204acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6caa7f2669cd4c14c51075dd2a9d83cee999aeb88c9c9a8f7f0157d25d2d57b7
MD5 1c9fbc6cb02aa4245b558fe0f584bf99
BLAKE2b-256 37d972af111ce3bdb6d177c3d7de48c2d4e00faabd0ce9f512074d0b3c2226f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab8cfca636aafd731cfec939292036c7e8f7079ef1db133d8eed7f29a58f0b5b
MD5 f140eec3d282d5014375fad585f2bafe
BLAKE2b-256 8d74a7f60c7c50ff02bcfe15f4d752257caf624f2ec06c0379e9a5d19bd1281c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc2aa765a98ddf9d700177711d8dee9b2c78606b57915353e12238de61479d51
MD5 7d088fa3d0453f919cb63ffa363212fe
BLAKE2b-256 b1028677b7c76152539d9f1ca46b3b46ad61c58c318fb6789668b36a6cb4b357

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60692796aeb1b059d968a3e66b3089d611f085a1d8b4f836e59aa2aef9f5be2d
MD5 124f905f57f62b4f5ac8f14c400dab23
BLAKE2b-256 0e9f7705285a28fb01938559b2a63f4e90e2ec029485402a0a8ab955a231324f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d7cbf096dc6cf468760e98c95a7e0b710b02510a0010ca1ae96bbe6ee4b739a
MD5 620ebcf3ef33c0d47890c37e513de8a9
BLAKE2b-256 bd0928e3f1d8d2c5acc1ec17190f7b045609082033d18c39466bbf7874a1fddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79f32fe4074cff8fe3d3fbd3ff112fe9dc90b22df52362bbeb1da0893313ae0b
MD5 9144870527ac2d456b679ab1d75dc26c
BLAKE2b-256 26328661beaefb2ba6314975fc458ffd887aa7dc6017ba11a508645d8f6d922f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 964c20b271c3c87c72f6b4d873b49f60beda4dc32efd64be1f884d569ffd3c9b
MD5 206e091d2ad4af0e50579242454016b3
BLAKE2b-256 2223e7ede72ef73ea09eacf35988c82fe04ca39f90fc24a57f685aaa45206f76

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08cd9f88e5896f7b4f7765b89d9f68168115ed7dc149ce3c2d885f1f56850646
MD5 04ccf35f9ce23f63130fe051393029f8
BLAKE2b-256 01d64dd5662834d2ec47d68501c9f3325eeca96e14b8f15c3481c7333dee3b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 909d08bc60be6bf83dc989a64d2040478cce31fac084a2b308bdef33bfb94257
MD5 d86adb9f9ddb64b2dfde185b5182f080
BLAKE2b-256 375f54827fbfc2aa8cc42622433c49c0e23a6add4de2bdea72ae986af874194a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e8910b976e991b38a351e1c9a49c471d388e3bde461aff7f50bb4ca34fff3c99
MD5 7b9e49a61453a994ca4094dd2d9c8438
BLAKE2b-256 431a5d9e43cb8ec6cfa69ab595f2b9ef07e63b16a0b957b8491633f4abf1653a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ed595e8dc0bc9e25c6f9186b3065d0546d4d528ca16bfa0715f71955e4d2a9a
MD5 a5e28c84f529b872d49d091c4776b660
BLAKE2b-256 f238b1c7d342369452627434740096c0f8ad7dd0a17eac73547cdb99c2a1593e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 784a4057f86fb8f20b19b3e4e87b73a859498862e72a2c096c645cfbaf1f4cce
MD5 885e4439d7374d61eea290bb9bb91714
BLAKE2b-256 1d38c55907a95983b69cd4671c6c4d9700e1a9818de51fec68d134fd82714813

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd2bb32c6508d4fea3f59e299c41e1d58c337c695c4a7e999e4def4def202c67
MD5 9b69fd8be3d86d23759550f98d56cd6c
BLAKE2b-256 62fa1d02f90fe92a669f5d9a325da1228122252cf03cd8b1bac1017841cbad4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e86bb559c45ea8a22e96c9c4cf56b2e42492016fe8a00850e643f204c818967
MD5 6509bc39577e758434c63b95f52be151
BLAKE2b-256 906f34afbe3f16d1502cebc4b2aed902ddf2cb8891953354d0b183e789cb719e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d32eab46351972ae65c0182027cbaef88fe59420b90614bdd6fa0c310de00cdb
MD5 dfda7270ea518935e2a3197c3421c0f7
BLAKE2b-256 e2a9afe08ba6efc195b2a23db6e1d5d49a58d6436f2664f528c914b867917953

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cd13fccc980c7fd28450f611b9ee33c483e98b61788e1bae5abe8ae577b96c4
MD5 826d046bc09e1280c65abb9f9426ac50
BLAKE2b-256 7562803881e3a730cd47365efea9c740dbfa8aada6c7589da350717876a30630

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33971dc8a21ab77915bbce5fd970cd4634e85a4fc541a56ef8ae2eb1b7d08060
MD5 3d17922c7d7113962f441afa4dde8530
BLAKE2b-256 ba6abd333d8b128f9eb7706b8fce21d04cf07960fab0699cb9f080f340875088

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 870cca9128765544c0068a42e360323fb07dd2eb8d6e4237ea6beef10a1ee31e
MD5 85e2099510cc662885d3013590e7e9e6
BLAKE2b-256 e21a0b0c60a0866df5731e5b7d95a377418fd2b27a69e81151b82a1a7b9830d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4d0b6efe6132eddd2135f05fd352f2c6344229d57302753ac7fea10c83ef4ad1
MD5 2e7568350f899a112f6f912a417205a1
BLAKE2b-256 58ed9a5b312dd0631067c14928754e78b8d27a3e00acd3431305dcaaf40fcd6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6dc4008b4d8f29214b6b94df6d2f4319f2b36da2902696d602a318d13100d911
MD5 5f8565c78d1bac1ec8f3e1ac7395570d
BLAKE2b-256 5d73bec674d78bca2214fcdb1f2ecc48fe35e2ec8eb8ede91c846a7adc49a330

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eafb74d530f0e0f39dcefacf5cd1b4055b744a5068c8a871ab79caee60e3acf5
MD5 1c4cc75185d03b7338481d2a3354d752
BLAKE2b-256 3dfe63da605ec4c809251f547d117235b9b9650dbed3b34de14918b74bdb453e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bc11c08eafd56bef43883ad1129affc0597b8c590daac2f337e957581033b51
MD5 0748e1acd9a8b733c666c646fcd628d7
BLAKE2b-256 b83415fc50edc9cbb7a005b287eac9b7af9f2e9b94554a839217da4dad2b842f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dea89b31881a90e658bcc160de25d4eef348fde144ca9caeccd0972050c0685
MD5 535ce9786ef6528652925290166a7451
BLAKE2b-256 5d55b06046f76c332de6be5febfabe890b4196b263834cfaecb59c81418a5761

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 784ed919ae6d90d5967fde8ee2fdfa7bbc2755e340a73a684ba06ee4c73d546c
MD5 e2adc3b75fe0034810678291f00680c9
BLAKE2b-256 438b267614dc3c102d34ead14cd87cb6031f92f9134cde17a2f673dab3a1c74d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7c9eda0a103b1085cd0a92d4f4161e7d52dd3f0087d173693c2867e4cf0bfb0
MD5 f85c4855ba131d6d581e473e4a703d61
BLAKE2b-256 fb5b9ddf5dad9696b8659856d77aaf6bf544dd542b54cad96734d5c7c33f85d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ef8939f0e83e4809a874666ba8a74e836cbf474c239adcd80efae74681c9858
MD5 708d9f349c218fb0e539de5ed8a7ab1c
BLAKE2b-256 ef46eb9925bf47e186f5d6608f46394fc29c6dc18c06945fa5bc29467ba5c4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 374541e03ce9975bf3791a7c7f89a612886f25c3c893ada0e3de520e8437f051
MD5 81f920cea0d20a052b85e4c1278414d1
BLAKE2b-256 ac6a5d976796c064f44070656eef8e9792fdf65712a3a5fd2bdef38ffab09824

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c69ca9607d549d2ddc2b3da30be5a585523fef25ee4608f100e99cfaa70a300f
MD5 508f8997c35d72f12d52118f1766fd87
BLAKE2b-256 cfa1f9b6821fbf8a95e24f3d10e574924ae9b47f13e048a2a87d83d5500cf406

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e983d99f5bed6d59e306d0bc81f7a6282bcf1bc8c9dd641224ae2b90d2e617eb
MD5 93f502869ab7d2d90f164ecf57182386
BLAKE2b-256 b6bfb40bcd0b289eb23da5266b3d6a977ec1ab800b374237cc579864052fc0d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 503f2f277e3c67bd9d728df0c1b876a5ad812c1aa05f116a8f50d78686c08dc9
MD5 6a98d6bf9eb4ed6b2d724cfcbf2cbd32
BLAKE2b-256 133bdc1618be226c21a675f838e77cf22d6b74d4c8dcafc7d80bd0c15e42fdf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b4f4662073645452fab51eef0e8815b9aff9befef2b4e109add0bf7ef40bdf0
MD5 4035554fdeb826c928e25fbb4ea739cf
BLAKE2b-256 44b73393c434e909f4c0a672b6b8f4a13eed3fc2e601ae5300b9e3643eb21f0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e6670d3b0aca0e7b5260fae9a04e39ff8d160e23e84f7153579c739bb8fb613
MD5 cbc0c9c4a36e2b54bf1ef248d5e5be40
BLAKE2b-256 3941cd25c2b4589fbe9a1f68e7cbb58c81202532548752875df63c17b33f9bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 849ebee97c0e55977e6456bc15100b18376e4cfe8d036eefb40109e9d723bf2b
MD5 e02461d8dd9de066e3873faceb14580a
BLAKE2b-256 4509d07dc306b9622a81d6c33414a5db5402ee91164624f1a06308dae34f4cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cbbc4a8672ab9c2f3f225c24c3ea8934065da9aad10174530402f13817d17b3
MD5 7c267a9717d28656bfac4d85fca097c2
BLAKE2b-256 b705b60f849a52a5c1eb87e9be7577f257961a9cd90a1007af34dd8c35ae68f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da2b4b81ad38a29bc99b69710e7d329bc54825ba4074708b952f9c17f55a6b83
MD5 d07b798a32beef6aa3e700d84c6c5a84
BLAKE2b-256 7a1490608a3e9a1422a36121fd15cda8089698c9028a177d3ecd47156b6683c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 358e62bfcaf36e6fe424d5752776bdba5cda0268bb2d09aef41ecb06ed58fe0a
MD5 fce9c8017aafd55f0c44f65f1b44cfa1
BLAKE2b-256 af800ae7f2dc71ab216912ebc13f7db19773ef454636ccb0de28918dd46730d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8ee6e1e3e716fde943d39f52caf3925c6e13521dac41a4933ffd8e5da1b854c
MD5 3dcdc110dd10c52e5e5c9cd5916a4192
BLAKE2b-256 a4b6a717e6bff74459fae1e28d800bcbd2f97c6c8ecd2490c42c4bb2ff25764e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4fd174d4546de43c96276d9016eb88c61f22e32807e3ca08f2fbecbb905dff26
MD5 7435c1457b8f3aa4d1ffcb2d828d19c2
BLAKE2b-256 f02ed104fe3e4bc129d8db3a90f820d35143ade10953b031a2a30b9a70c17f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 237b2f873ddad8c680ab619558a860d5eac20be57da5fa58cdb34449c1017209
MD5 ba39ee6838eb7c46543132bf474d970f
BLAKE2b-256 814b9eb7f4299e60245653a80157f345263d836abb7aae9cba0ec132faffb092

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 001eb0c23f68d9083c30362217fe0bfdeeaf84e739c4c7a9e8ac75cca6273b03
MD5 dfa1271a79be9891b857e8afb45651e8
BLAKE2b-256 1ce52e62480e415417036293b61ee853d03cd597d542d436605c89e33bced782

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac77d9fe3e50a3234fd48e7e24eebe798fc3fb2a5498088943c9f3868c2d9aaf
MD5 71daa6e742f04a223e5b1a6c5b9afc44
BLAKE2b-256 e21dba3c1a677e39ca0bc31311b6e03a4b8d4833419b410cd3d6d60681e609fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adf0fc129f26f41e976f0f39acf87eb2c96905fb5c0988fc2f3dc1cee5fd5f8d
MD5 16202bcb0062ca124b7ef825a8f665b4
BLAKE2b-256 113471c7fe8351f88a4919a9d0293a2debcdc0e592e627502247a0c587d0403a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20f3afa9184441471ec155d49a61587d9c3513f85e105a9c1598eac0140eeab4
MD5 d7c25a53092488ebbe45dda76d42e9e0
BLAKE2b-256 5048f774b0d3a0188fe157841df4ee214eeda10b675fae0215c649ad5cb02490

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 10f38fc7db7046447e3de1486b52e9bab38a0dff833eae09876be7e19a61017e
MD5 67190c3ddf965a81e09fa7bedf6d8005
BLAKE2b-256 9556982da6270899d554f16c5d5404f689d12b59141648e67a59eb97467fafae

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abff47f065a15b832d2799709f4d06c0f55a00bcaf59ba05e95f88697873dd2e
MD5 7bf0c7b8a091eb84a6de243665edc08c
BLAKE2b-256 09a0eea073d3cb7ebdfe773050fb4336d23161b9143a0e491b799dadab472008

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71ae11fc035a016cfafd2592e75b58806598ed92739613d427e9c464566ccaf7
MD5 9b7f91bf910fef740c74273e77b821cb
BLAKE2b-256 ce3059c6ea7ab6113995c6442e6a0b44a02ac2416b62626db9ca8521953e1d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.2.2-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

This release

0.2.2 This release

91 files

0.2.1

91 files

0.2.0

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