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.1.tar.gz (308.3 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.1-pp311-pypy311_pp73-win_amd64.whl (449.1 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.2.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (768.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.2.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (822.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (714.3 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (543.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (535.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (584.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (508.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (531.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.2.1-cp315-cp315t-win_amd64.whl (443.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.2.1-cp315-cp315t-musllinux_1_1_x86_64.whl (763.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp315-cp315t-musllinux_1_1_armv7l.whl (809.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp315-cp315t-musllinux_1_1_aarch64.whl (708.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (549.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (571.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.2.1-cp315-cp315t-macosx_11_0_arm64.whl (495.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.2.1-cp315-cp315t-macosx_10_12_x86_64.whl (524.5 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.2.1-cp315-cp315-win_amd64.whl (445.6 kB view details)

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp315-cp315-musllinux_1_1_armv7l.whl (812.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp315-cp315-musllinux_1_1_aarch64.whl (710.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (534.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (530.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (572.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.2.1-cp315-cp315-macosx_11_0_arm64.whl (498.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.2.1-cp315-cp315-macosx_10_12_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.2.1-cp314-cp314t-win_amd64.whl (442.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.2.1-cp314-cp314t-musllinux_1_1_x86_64.whl (763.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp314-cp314t-musllinux_1_1_armv7l.whl (809.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (549.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (570.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (495.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl (524.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.2.1-cp314-cp314-win_amd64.whl (445.4 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.2.1-cp314-cp314-musllinux_1_1_x86_64.whl (766.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp314-cp314-musllinux_1_1_armv7l.whl (812.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp314-cp314-musllinux_1_1_aarch64.whl (710.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (534.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (530.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (572.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (498.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (527.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.2.1-cp313-cp313-win_amd64.whl (446.2 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl (765.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp313-cp313-musllinux_1_1_armv7l.whl (812.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl (710.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (534.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (530.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (572.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (499.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (527.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.2.1-cp312-cp312-win_amd64.whl (446.3 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl (765.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp312-cp312-musllinux_1_1_armv7l.whl (812.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl (710.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (534.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (530.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (572.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (499.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (527.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.2.1-cp311-cp311-win_amd64.whl (445.0 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (764.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp311-cp311-musllinux_1_1_armv7l.whl (817.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl (710.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (550.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (538.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (580.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (503.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (527.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.2.1-cp310-cp310-win_amd64.whl (445.4 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (765.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.2.1-cp310-cp310-musllinux_1_1_armv7l.whl (817.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl (711.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (539.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (581.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (503.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (527.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.2.1.tar.gz
  • Upload date:
  • Size: 308.3 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.1.tar.gz
Algorithm Hash digest
SHA256 5c377b159b2bffdf06642c93290ddc4039b2bae25a4e41124a78b067d33911b4
MD5 d8738d9a503c8cf6f4ced73922bfa666
BLAKE2b-256 542440de5d420e694eb4d2ac0c172c8fc5e2d634d8487c03f1e2eeb7db2cc6c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 402e9489d89dc008721e16b260c597e98c5b945f2dbde50f52683d07b1031006
MD5 358d4d91c2e1e77f16851309b451e418
BLAKE2b-256 347ebae2f2919d092aebf12c233c53e8262f0b1e29491deb3f6ee61d31eb1b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 874bf869ac7df5d68d67139ce64a9db37962d3bc97330c9d60c2de4708b20616
MD5 adc46a0e41410d6e95699b09de6b9967
BLAKE2b-256 b34b95fdc3508d1a229e06468cf97bd4508fd66047d7ce65a3e378b3f407494f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5b84395c0e01f7fa721624788bd4afd33a49e0d21236046388990f9c49f155a5
MD5 5cf7c3bbfb05926e2cc0adbb298447eb
BLAKE2b-256 03daf65f62b276e32717b64f271a21e181558a3f13dc8a4f062e6c16880a20de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2f307a1b22b39388f4f7887fdac517d9a1e40bf261574b93d6643d236e04e476
MD5 f0f8adc70da5b022bc388ea20775bd7e
BLAKE2b-256 2b42208e02170b22c187f14384ed91c45b5c523b8a94033c004dc6ee0ecd24d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cfc61899d0cfc927f9dbf7be6d87292afd3078a49923d8e1914b45dc5a287be
MD5 1652e996d4a5a731179092b837282ab9
BLAKE2b-256 e3ed0fea7e75b28a7626e37c3882ac8df498b8737b7cd406db9203662514bb6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f90cdcf755a4a9b19789a55b3d249767c0f96feb18109b5b6dcd348629d0409
MD5 17b49e70452a582e3c03c34d5c28ab41
BLAKE2b-256 2bd3672b62bfbed0042fc18e931e5c39444d30c1d3e4ca4bb7ee43f040a22700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 804d39516d6bb787ba0ab5e5e17cc931a2939334dc3f245fed55817226abf446
MD5 163b1ea40488314787472a7d178c01dc
BLAKE2b-256 27820c5610058ce38cc50a806e642f44032771dbe088cb10594c03ffab727ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 256cee0884528b2c49c86dc974f56093e2f83c808762926fa01c10140f82a136
MD5 a5750203446e46870ca44be9bbd39889
BLAKE2b-256 a6e0052694b00c69b916ab606f3ccd903e69701e554ebd59494d66fc5f2cc89f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4890419909874baa784a324a6a78a9fc0d359a7af44cec12a07ea72f8bec32da
MD5 826c251166e16fa1acdf80f3a7664d6c
BLAKE2b-256 b20093e8a555ad85cc8388cb26ed4049492b3d31c3536ee3f50eb474e41b275e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e6dec6665a8a4b5647e661497aaf95b50065a808a036207a80e88ba0847d497
MD5 c5e4a3174315590159184d66721cc853
BLAKE2b-256 f8bff38f47ce9a383b53e2e8be9b10546e294622a610bef6228721fa1dff25f2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 443.0 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.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 73a10cce51c728108e16c099135faa2b9e3de066c7afad0c24dc8c9843a2db3b
MD5 41e5d74d06bcdee498e5ff8bb9c3cf42
BLAKE2b-256 f30e48fadb9954a770e41da8b4926074b1a89aea5f94274a7f7801a1ed7c6370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f55625ff978eb268e8d576b710dfc4b20ed628d8461b558d756e54d116969a6
MD5 923be520da6fe52f72bb25d089439a7a
BLAKE2b-256 4c172edd4dcfce2f84e1e176b6c5cf45cc435827094bccd133dc3c83af720972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 645365ad5e45630a26ed3147313e47366afb6bc684cb5df60a27f81397df8dac
MD5 74642b26c9f19e27e56117a69160819b
BLAKE2b-256 fd15cf8d4b637bb36bc03c651bb6998b8de88ca9537af92853c7d3533a179df7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ef7e608d982dbff5ec420189d731adc04db717c265274cc1a5b77192fa8fec37
MD5 594f1ce493e418c76d6675f002167fbb
BLAKE2b-256 61b46dfe8c13d72cd7d0272e306074afa30df9cfb2878ef6587292c476614618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a27a3d655b388f87c1f8fad847654a3976e4bf04b231e80ca3abccaf4df9780
MD5 367644de05942cd49ce1a0eff4e03641
BLAKE2b-256 25c3a27ce0b65f693a9f124c8a9e9390cc84a9525f22c96709eef453cc137971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ad73fc92d9da3ab998b4b35b16f279af9c490877e5d31a1f34107bc69580211
MD5 880a9031d123fb6a081a1bd4c4e65964
BLAKE2b-256 959b52b4ee5a10d0ecfa1f4ae3729d985a258d01874e92feacbc3a3f6e942d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04b066fa5e30026e3ec7e20b7790b185134899f23a078bd9f815dc0f71ec0c2e
MD5 99fedf6db015e6ed0afe44d466cd6556
BLAKE2b-256 c709c41d5dff28a1d9586dfb37def6ff9f04a4b973f4ce54a9cbbb4b165c9ee2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88856fac22f150354ad4775fd554f24c1c3419ba514bf0ddd611b33358a7d2c6
MD5 f1e39bfbdb84d5649e3553aef32629c3
BLAKE2b-256 43a242f123659a01cdb749f92f3d4425ec7e9626627668ec0c0d8e7a4fe8c468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e6671fffeb26dc86b76066825cc04e36a201c4559225d85a567caf1e1bd2af9
MD5 cb570a5f84a85220b25f2c7817becdf8
BLAKE2b-256 2efd54743adedb5d5653bed5e5825f3c2890bacaa5c2e716dc1b47d124f2e358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94c57fdaad462d9ab62dbf4816472d9c2f32ea0921e60cc73b6e5463196c52e6
MD5 c3c25004236cca5ef122520da753e65d
BLAKE2b-256 518dc5b2b36e74255f0c8cca873fcd4c9ed260d57e86002a22773284a61421d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 445.6 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.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 4cb66a64b6234dbe0f78fed89c70ccb99f36df0f8fc918afe3109ed39fff8b74
MD5 4857d58d376e90701960b2dda361f940
BLAKE2b-256 5388095f92ff58a9ecdfada9e9a13b8cf9b75c34918daf2abf3393702755df32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1418b61291da2fcfe4b13da2fdff76e6d4c08f5363aa58d64da740d50d7a759d
MD5 fb721c866bffe090a5a857078a898526
BLAKE2b-256 15a72fb211174995c694655bf5557d3e54ee135cafd92a496eff3ba361ebef5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2107770f8976e3ca03d0ae9be8cf8fd7fe2d4462c8f3da9256970000ee2f97b9
MD5 dafed3707c0b292b4123e9c6646f1a3f
BLAKE2b-256 8e83307b119587930439fc712b36f0c028897fa2201ee571c5fc2048c0ff30c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fa27801430a054bba48b7ae618397c7f5a9f65cdeb4a314bba7fca9d5c5e759b
MD5 3609a6713bad588e325f263ac6cbd6e0
BLAKE2b-256 53e2d1bcb9026888b22994c095930f01d25e37cb69485af8abb9c2539c741b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80aacb234e7ba4a14457a3493630c662077f2d8742cf16e76a40d083ee9e0e4b
MD5 0a45de7e379e102422b545c86f6523ac
BLAKE2b-256 d96f0051266161dc78fb3c494533751d37851fe0d65e637721e9d11638076bb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2084e95fb21f7878e4b3df129504a793f75d425e9c12c268e6366300f6585660
MD5 1f59e2cbd9994ca09104258863d434a2
BLAKE2b-256 e61dee4f5ae36e54c4fcfc5fb98bdeb9be0dd5f02c533c3fec5a878faa8167aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcf98f92568b305b039f8464bdfedec8c459eaf01fea19054be99e6d6fe275a1
MD5 878c7b8d441b0a99065a96ac7827bb8f
BLAKE2b-256 a5f690309b36b741109dde0158708a4d5bfc528f62ae2551ab1ad522b6fb2e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57173ff90b99593707fe1cb951c5a02e44431e687d41716a5d4b529ea5eb2c72
MD5 4dbfa318022580b55baf052871b6dfac
BLAKE2b-256 6bdf1dd55fc5a0f98b9bca5008e5db81585ea4bcc88c2d66f62c9172a491af7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d9a5cb3dc0957ea696d329e2fa042fbabb9da5b11f5095de19d126b33074130
MD5 02114dc600f88d48a52bc9f41c1cda6c
BLAKE2b-256 6f14e4f1c0f61dab486248a8353bca165c5cbc790345b3ce845b81b2295926ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6187a4a27dc28ee154288254603bc0fe5b03219e89f4e3375c2388cb881b47cf
MD5 0695e42eaf8e8dbb3e5cd43cf6893c2d
BLAKE2b-256 6b613db2f081902297e2c501574d85aa722447a2adc72d6431e03f494ffe6001

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 442.8 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b05ea2e2235960133031909500c6a9d4e1684f10c94b63cf151edb6bb4e37bb6
MD5 079823f0c8fa4bc4dbb281b05262dbbf
BLAKE2b-256 c2c43d5b0d6dbedcd02e6d84e431bc4567e06f16de42911009e2f8a475782462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5fbe4355cd315fedda6b2bab8307b40ef6da63e0acb82f79f441c92e3208809
MD5 098c0bd2ca2acec12cec6f237343d923
BLAKE2b-256 e143a292028c39acb5013de9c8c374f3581729c560aea79e22001cd6d02fbbfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c4c491c6b4a796ba9c97f62d8a9366407e899e13600cfef220fb183f502abc1e
MD5 1b8ff8b2544648d6f16bd9a031aa1577
BLAKE2b-256 d6c2bad7c099889054f5d41fc746cbffdfde53f13368bcc17197c4adcc5efe92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 465aef88ecc23f4dbbd36019bb65c514b8a2653a65f0761f9fb28f092f74afc6
MD5 46828d408fc5ce7599aeba8b744fdb07
BLAKE2b-256 2d6a4162a29c17ac1448f29b86f19ddacdb9fd38d9fdbf82d08c4b2e4c187751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ab55d5cc2a50a9b3d2e108ec9d80ba63596779a07af851e53e750bf4da5ab52
MD5 c6a257cc67d6d1a51df881e0e2e729e8
BLAKE2b-256 04141500b80baa5355da4caf22ac72d152fb5218cb7765b1582cbee7d38a6e6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44ccb9257275054428793afcf8447d7ed3421104903467489ca3037ec1ddb822
MD5 9ddf0e0e17dac7abfd959379d20e9156
BLAKE2b-256 02c35ebc07e6f38db2524d305cd01f710c59f9e104ee1877783152f7841289bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3383bed6159ca5da6b5fbab1843b223c6da577db75a77c85215fcc54eef1700
MD5 1b95419630884eb388ca188ad5078886
BLAKE2b-256 cc8c53aa7ac559af5fdbe0b164c8a1f9b64df016a409d38f588ff24b3d73a0cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4a6a7bcf37f435270e342fa166a772a96eb68fceca8b64771e43d65654bbb2c
MD5 565d7e7516524defefebf1b6ee083d1d
BLAKE2b-256 7aa5fcb671594280bf2b49c5d021e5b2a6eeb4aa56d58459e9cde193c358fd6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 095483f4859d7f1284d3e416674ecc506f8117a077d0b2fd01c3d2ec6915f266
MD5 d39aa21843594d7df43095f3ff4a106d
BLAKE2b-256 df2e7fb18d7e94911f569ff95ca149feb730c6b11e72db9b2a5078384ca8fa2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af94f59f43b308ca2f3c02154b3daa06dc9e5977bd237bc7734d566cbb50bae7
MD5 c18cab6cbdde6b65eeec8caaf76d7c1e
BLAKE2b-256 c05e26cb60c43e49817ea409d4f2953205b4d930a18250bf05bb7bfabadd553e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 445.4 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7a76a13085a50fa4295fec74d0e7da898c861c8582975d01d4ea25ecc3c1e722
MD5 7640c897d2b1a145b06e09a3fd1b1ae3
BLAKE2b-256 25bcef5d016f2f98ce01315aa39f1528e17389e0efc6186cac5714b8296b2a5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88ce61b28bae8cb73a376a28ff1e338f98e4b5194a304a170296efce6deb0e7e
MD5 be74be44076dcc7add3d83ccf02e4495
BLAKE2b-256 af671926d9b5ccaefb4c86e83480095dafcccec085b71439f86d0591d77acece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 87013209be03cf4544330a8fa09efdc304630b2868b8b2c15819e90b74ca274a
MD5 10262c48082394276e0064621336331b
BLAKE2b-256 eadfd98efdefe8b591ee1883309b4af5cc9946ff0444c5e23c5af1ac97e1fe7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 280c2ca026981cf903f45d8237f30997acaf829832e080f96e0697e80784964f
MD5 39b65dfd9c5e298d8a588ea842968247
BLAKE2b-256 f873e682525354af5c9e01b65eea0ac710525c306d9e0fd59e40fb05b5f85b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d21e1583cad420c6cc489b8bf3375a7f10a002056adb0517dcab14226737ac7e
MD5 93a7f2221a9200aabf8f80afaac72754
BLAKE2b-256 8fad3d2d75cdff92988e442767704106b3a946771c125ecc25bd567d460ad6da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 314f07d2491d8ca76512a30966e3be0b922aae2e60f37d537be84985a63c3976
MD5 511f40bdf7a4c6873aeb0cce0c4021ac
BLAKE2b-256 86dc99a86ec5fd904b2a42812d248a114bea6b03bd9f5e499b24469262400da6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6090276d48dbd16b54bf8661241c4071f71d86f30a6bd3d3dcc33ae90a7f998
MD5 8d6003792c06a197ce632d438179b0b1
BLAKE2b-256 65771af7e595e77a266f9f4d54c7dd1e3896da207cca9a66ef9ec4e6a3dd8728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f343595e956367bcfced336beb3ee19e61c910963ad9b508d019be28011f604b
MD5 525f2d9cfa1bab651326179c4073659d
BLAKE2b-256 35b443b229820e5078e7cd927b2025a25c016a114ceb78dedb754a57c55cc74c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a2d75b0e1ec98fbbbd7c75664366f87de4ce9ba86251f7518d7328c03b118e8
MD5 4240597c54909182e85e162ba7ea6201
BLAKE2b-256 d073ae4ebdbee3b3e3199ae03948cc424a39278e473dd9d3d08b60d3ad260e45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02f01ec64405990daa140bc518d4e6157aaca54dfff291d60aaf5b7130bc5cd0
MD5 dd2f74d74ea38a8e027dec0d1aaad484
BLAKE2b-256 cb18bdc401a586e77835e3c065559339ceca098130c9742a6ef43c5c8ed075ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 446.2 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3968bae6102b13427bb1569fcdf0ae0eb97e616ccf27a4b85e7b1c4d856cde4
MD5 aa5d1ac74f95a9aec688a6cf1f0c7b33
BLAKE2b-256 7f4706800fdf4e8d5ee7820960574215760b57a4056de194ac7f2ea45af59f59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2ae50e66aafddebe64cfbc6bb6f707cc02939ede47e136894861f50368be0d2
MD5 24becc34c6d1629b6e831c8acf7eb1e3
BLAKE2b-256 6577af8ef29cc610369c94f8a39ae0a527e1077ea5d8ff16d82f7c20a55b9ba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5283ee13e6ca943e485760b96281452608581120a406310d4189b7c8b05908df
MD5 3e9ca6a83e3d84314f601cc2b923592c
BLAKE2b-256 82a36c8ceffc4fa4340878aa5292be0f360f4fb9fc51f364157902aec287a2cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 291516bf6698f72e0108b85371e77712ebd5b135cd3de6ddad8b373877b0d3de
MD5 99cc84378a1c669662a8e87c355679fe
BLAKE2b-256 3e82c30ba5af97dbe5f9d43b0e18f41d08539a4ec14c66fc1e9894d0d27323b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d0468e13b12d9060f41d4915001701239595f02b6e8bc474d55fb014d293239
MD5 f2d5093b7961b1fbc9d7f76b14f0edea
BLAKE2b-256 9fb1f8cf656a65335b359af73e60f6b7201b2a6cfb0d9a2db1c35094b4ff0581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce576dd6f69984538ed2540bbb08fcf72fab644fd62d03a777d24fcc3abd657a
MD5 b9d376f3ed01bbfa218224263a34eee5
BLAKE2b-256 c5d972637bd8bc2a6db43bd7a70c08083d85e0c2c1dd1a5b08931b197ed25b47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fbae013368ef774d2ccb1c1ad9da6ffc1591b3648dcce380e3c08e2aadaa48f
MD5 74e564b8a3fb32f70b20ae3caf9375d8
BLAKE2b-256 24f1d82e9ae2c2fc3ea3e961eabeb2bc79065b43a9745d5528a9907ed9f0035b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 028b3546e57460d73a62bbf572f056b48e9487150a44a987f81288d023e1942f
MD5 5bad472db78544a5f15149f7e0963fa8
BLAKE2b-256 155e9fc6207e0af4208037b598a13153bf465231f16288f660744304b181e2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cb4ea09505d8e92f170882e2f0f0a1b11152d647a4100abf26e4eeb69958181
MD5 515c0da3d05c51834492f16c97892d56
BLAKE2b-256 dcf9d2dd085b3ed51840337cd3929da50388242721596aa3f3f6883777d1ecb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef469db31cf9a9382e9be74a963f4af86b23afac9f21cc7a0b72276b0a180073
MD5 fcac3ee0b2774894a54974573735b654
BLAKE2b-256 5f2fc19342cc3ba239a197ac7e9015598d30d2205f39d52814ff7710a5ac0f73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 446.3 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 048a76b26586c9b44beec75a4bc1b5988f292598532046019b10bd9d49c55065
MD5 6ebf441e2fc592942411853ab04dc143
BLAKE2b-256 ee1a7f1818de246c4014046f56b8e5606444a4091f0b2553234bdb157e31c001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8a55a99ddecb5bb877b4c7788d72244aa405ca9064735ccabb190aa2d9eedd8
MD5 4fa5481c34cc1b7f22f78e8b28851ef3
BLAKE2b-256 3000cd7a50a9175774141081261c4c4d52f4b4e2137a5d6e1aeec0b48f655a42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 383c4e4832f0545ec224146b058e9e027e619741cffffdac83ac49ee08c6446a
MD5 b4a9c92cd128ef8edb8d85d2e36970cc
BLAKE2b-256 432634f56c0a23c0acd84620d45db3867b155a4f51c19e6915de2779651fe382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 573a7a12ff1532ae6098b32150640355be710adf7048d8d87c091f703ef00c88
MD5 ece7205c9825f9b3066d1409fe9938df
BLAKE2b-256 34ed3dbdbac6399ef11b3578c0823a0175d889a968bdf7d84d920605a84ae1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 713d1a835fbbd1f91d1e4cdaca7ade84ddff1e5501be3f827cb9e9466c7433cf
MD5 b0ffce4a0e2db9ad376ba3cf9ee3ee7a
BLAKE2b-256 19d52a3f4d37e31062105d9815a28a34076e8a5b525590e763106cafc094099a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17b5be1faf1694fd7f2453948a753622e3d9e0b9f196b5938c76b9c960b5ee17
MD5 981232ba766dbdba7e416bb4023e93f4
BLAKE2b-256 87c774df405a2294e51d20f3b3ed6cf1e86af6e07b24b27441fc9fd54a7c0f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2499f40cab18418d9ea45b3b71ec7b9256e2a928dd65c294048f884fadfe2010
MD5 6edf788b46cba364272c0f8520548bcb
BLAKE2b-256 9b5b6a9b8a1bc6ebc828fd7ea342be6973a92cef22e09773456303fac19870ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 717f38b8804ae7b9b9d347068ceb822b29a022ab33ff597f5354a9466b5f5451
MD5 7be0200b1f01d720c61d7788eea094cc
BLAKE2b-256 91a72c9fad9bc1359d38e0276469fd47ddcfee22a03d2ccae6c3d5f10a66e525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bffffbc0dd56ec8243c67888ffbd58807d3355eacfb6974784ecc1486bf04bad
MD5 b9c4abf8a29e3dbc734290b7720c53ca
BLAKE2b-256 089fb5cc32a7387b4335889a1d040b97f038092e53f49f2f8e42e7fcec7c7b66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e59f5d30e8f34faca67b47be9d3cee19e3c3284efea5e88bba2e13b835eef435
MD5 05b9ea939d816055eba462c5d54e70ca
BLAKE2b-256 6e9ea9ed352d259c510f038a1aa5aaa5de0c9a394eb6bee6d10d21bdd4c03bb9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 445.0 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc0ab063da4b6703f6f7cda268cb9d73ae831c56e46dc3008f567e3fc8db3e3e
MD5 3972c9ba15c6f3a9ba356bf263d4a67c
BLAKE2b-256 5eca7b404c97a4b4880fa26e7812163d6d4d8589934d332bf6ffac659d7ad164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff5642196e4f3e82566c9d015754a5c2881b3eb10fddc45f9c458d2474fb6484
MD5 70162d10bd42284938e06277e7e48ee1
BLAKE2b-256 1fa2eaee8b4aa1dd36f41386a1d7668f29888be248e2955e839ef5bf77c53a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 719c5da25b622af528ae2106d8161e72fff98134199eaafee6c711f843eb8a67
MD5 d2a0775a45984053f0dc7cbe90f24e2a
BLAKE2b-256 d8b5dd07a4ab6582b7167409edbc4312b5c09ee22a62ebf10637fcfe6f645922

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf66ab91744bdebd1f5349ace8a70fa9c696fc68c5c4f6cc0b968ec2c476f2f6
MD5 9fbd911e971733c0199f0f515759a892
BLAKE2b-256 8a3b82cdff5cd2a48361a0f10fee2a6fe88d174064208fb51acf2b27c04b9962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5d31d13f5f2f761a2add247cc297339676db25dbacffb96453d66ce14cf136e
MD5 94c44922d173ac0c37468e2d7e11d4ad
BLAKE2b-256 2ee211e424c2b91b9e49a986e59d63f1f7416209d44c6f8bafbc53800d172a82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c01ce54f4e84e6f549331e67006d2bd766d814df6a39798117e4b6cf9b4ab265
MD5 16cbfb8729958efa07ece3f090262713
BLAKE2b-256 7a196aab448b879d4487ef6f6fc02a21d579d628de4c96a0ff68627d8d337feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57619571e83437b5d737c95dde9201d5343f67eee5a6b70e6605625b058ef738
MD5 2ea1ee7e6615532220d10e31cc8c7961
BLAKE2b-256 3d619a082964eac52d54fb08417533523008d81b2af012df4546a7ee32914bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9347a2b9976e9dcd8a2866e116749412f5d29ce13687a30cddd5e8bff9f60bae
MD5 6cf284a0aa2302b12816365069fa6e12
BLAKE2b-256 44a328fac60c9a7e1c24bd0996cc74870c4e11ee6434beef73842c1d63d97d56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda3f533c653f10a88c0e1864f20858ce447fc98d2ea0635430486258512d185
MD5 808bb68389cb88e086dad3a10d71ef5a
BLAKE2b-256 cfd7fda3b33d04626b8be7d5e5f61c0935b7095e2e80420bda4870c85506c60d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8252cade8b951f5fcbdaad3b84642147c2663d9c1b4eadb4cb24bd53888ea384
MD5 db80f47a83cad9d2c1980d49fd92d01f
BLAKE2b-256 78eac5d5624fccad508c3e486f077bd43d0721fba0c51458ea2c4280c2d21b3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 445.4 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4d818dd4b906b84ffaa51ded1afd6e6856844ffabc532e4465c011f95f59c2d
MD5 8ddb8bd6e89c6922ead4255c0615025a
BLAKE2b-256 0c5fbe049f008134c7c8429a1d5c5789818ebab5fe2fba24523183816b5482da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6057ae47bde573b15562d3b9b043f98425593c45055ed76018ac555b30b91f3a
MD5 1e8a4225345f3e02691725e169cabdd3
BLAKE2b-256 9e11c7e28ba42482940a5a160b0e2d1a65d7c64fa6d2c8b83fb340c91a93905b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 55ec8734dbd488c41a2d191e6acbd3c1bc5b3ae6572040693f00a341e9e1752a
MD5 51991f3924e0795de6158d86eb05408d
BLAKE2b-256 c39438951c0c559aea8995ff308bf54d3ef31f257d970895f63fc55c2000aa17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f535dd985ed8c52bebec8dcd89a50c8aea75881ea6ccd76842f6d4cfee6b078e
MD5 a230b9aebd1b72effc063dd7ef069382
BLAKE2b-256 0f3bda3d3a56b6d49a8187fcd040c8c516e20eae022bd1afd39dbde2bb845581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b29911e278fc26d2c3a854964daf4788800d0c395928af4f3380a819dc3b2424
MD5 72e3345ef6f4fcd1ef50cbf773f79319
BLAKE2b-256 f010bb6688cbdaf20e69e10291b6025a9dfc90714c9f8a8010960f3d479461a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93fb0e304946705f61ee14af8d012c5a3b87d51175c350ba6dbf9e9d3bb4d520
MD5 fed24da76dc2ba7c1f0180c308e5b16e
BLAKE2b-256 0471bdc53054c5c5fac1df34124f0343dc8dbf48592e702195e9cc4e4254784d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4a30a3903b62cb8b5e89318a173663368eaa508414e1ab77946de26196acb2f
MD5 34f499ea6de8a6bfae99460a621086e1
BLAKE2b-256 329fc0919eabc6bbc6ad9d6607816cf5baf8cf28c876e6d6f802f062ba2b3366

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3587188fa1830933cafee79f50e2c5df19e848f121f0615255e5e4d33e412bb4
MD5 56a9848f612650bffe78a1c97287cb93
BLAKE2b-256 870825f74e63160818309a961b03ca947952e53cd361df608f59a4d0a02ff651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aaad3c65ed91ffe9a20379bee6efd9ab77670be8ef630c5ae5761e93ddd25aa
MD5 9839459336d358df8b7ad4ff90e2afa9
BLAKE2b-256 97e99c6ef86440b7d3de2d755194f638ecc168fb5dcd3d0721b1b95fdb9ce10e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a71554393e93c6e50b10951c86979744ec9c1e25090515d5a421d83682e5bc5f
MD5 6ba63aacfe804f7c4e76e4cabacdcc10
BLAKE2b-256 f5fa788348c0d07adc6525c8c2c37e03b671846bc9141d0e1629cc8d37d6d7e4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on gi0baro/httpunk

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

Release history Release notifications | RSS feed

0.2.2

91 files

This release

0.2.1 This release

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