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.

Note: httpunk is in an early, alpha stage.

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.1.4.tar.gz (285.1 kB view details)

Uploaded Source

Built Distributions

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

httpunk-0.1.4-pp311-pypy311_pp73-win_amd64.whl (437.1 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.1.4-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (755.4 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.1.4-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (808.9 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (701.9 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (542.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (523.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (571.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.1.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (496.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.1.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (520.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.1.4-cp315-cp315t-win_amd64.whl (430.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.4-cp315-cp315t-musllinux_1_1_x86_64.whl (751.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp315-cp315t-musllinux_1_1_armv7l.whl (796.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp315-cp315t-musllinux_1_1_aarch64.whl (695.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (558.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.4-cp315-cp315t-macosx_11_0_arm64.whl (483.8 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.1.4-cp315-cp315t-macosx_10_12_x86_64.whl (513.3 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.1.4-cp315-cp315-win_amd64.whl (433.3 kB view details)

Uploaded CPython 3.15Windows x86-64

httpunk-0.1.4-cp315-cp315-musllinux_1_1_x86_64.whl (753.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp315-cp315-musllinux_1_1_armv7l.whl (799.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp315-cp315-musllinux_1_1_aarch64.whl (697.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (560.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.1.4-cp315-cp315-macosx_11_0_arm64.whl (486.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.1.4-cp315-cp315-macosx_10_12_x86_64.whl (515.5 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.1.4-cp314-cp314t-win_amd64.whl (430.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.4-cp314-cp314t-musllinux_1_1_x86_64.whl (751.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp314-cp314t-musllinux_1_1_armv7l.whl (796.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp314-cp314t-musllinux_1_1_aarch64.whl (695.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (557.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl (483.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.1.4-cp314-cp314t-macosx_10_12_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.1.4-cp314-cp314-win_amd64.whl (433.2 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.4-cp314-cp314-musllinux_1_1_x86_64.whl (753.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp314-cp314-musllinux_1_1_armv7l.whl (799.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp314-cp314-musllinux_1_1_aarch64.whl (697.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (560.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (486.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl (515.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.1.4-cp313-cp313-win_amd64.whl (434.0 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.4-cp313-cp313-musllinux_1_1_x86_64.whl (752.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp313-cp313-musllinux_1_1_armv7l.whl (799.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp313-cp313-musllinux_1_1_aarch64.whl (697.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (559.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (486.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.1.4-cp312-cp312-win_amd64.whl (434.1 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl (752.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp312-cp312-musllinux_1_1_armv7l.whl (799.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp312-cp312-musllinux_1_1_aarch64.whl (697.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (560.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (487.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (516.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.1.4-cp311-cp311-win_amd64.whl (432.9 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl (751.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp311-cp311-musllinux_1_1_armv7l.whl (804.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp311-cp311-musllinux_1_1_aarch64.whl (697.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (567.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (491.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (516.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.1.4-cp310-cp310-win_amd64.whl (433.3 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl (752.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.1.4-cp310-cp310-musllinux_1_1_armv7l.whl (804.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.1.4-cp310-cp310-musllinux_1_1_aarch64.whl (698.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (568.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (491.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl (516.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4.tar.gz
Algorithm Hash digest
SHA256 84c58a6860d396a0c843f890a43f54411c812e84d048b8c9bc8626a1c549cd3f
MD5 96bfa65379548512d9c0c6d9503412e5
BLAKE2b-256 07aa6303dd7545e6e03dde6a9725141ba3b8ab1152a5f2f5b70700478045af41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fd337ecd8edbb503c95c62b8b83831cb2f7cc3af291588f9864c2e34a7cd812f
MD5 27505f83496328694618cf12f7286618
BLAKE2b-256 b80788e1b876e6adcaf64e48c36da18f3f44a37828d670fae242ec9e66e5af34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d2d40e399704a95b60481d2626c69088ebb7b9423586fbdbf9516c61274e4edb
MD5 47671b7f9fd4188127a4cf980d9e7ae0
BLAKE2b-256 02d437ec21a4b0db1235406f4cf348545453cd57a6e0026bc4639f507f34d8f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b360ca2f564cf0cc7ad3435290abe04c2da99aba83a3e93d2e7ec70c7e06de9d
MD5 198a330fd3c108ed72fda842a44a21ea
BLAKE2b-256 b4a7f1c3f2782d079a1949a1469f8a0f24a10c831eacaa759f24ca05eb0a1616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aaba919d76e97c4a87b8ab43ff6b49a57b29092aefc8ddfe19962bb9a0c9de7e
MD5 412cf23040dc05a1aebab83e0f85a8df
BLAKE2b-256 b22253e4059bf5c85d09992766e22e4a790122dbd4760b754fc4b96c1c90a9ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 690c1d0b9f6a55c4d73e1fe02b00f307da5bae2dbffecfd511150475fbdea5f2
MD5 c59fbcd69ad86bef86da89db6297b632
BLAKE2b-256 43a09b8c6fa84082ea3109cc48f0a190369b06473aaf71c10617840dc2c48b89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ab69b3bf76c189587c4aac13e8ad0898954b5149f60aac52fcd5a525592e218
MD5 19bc4eb7227b8ff29a3d693dc5ecef5a
BLAKE2b-256 776df252ffcf20d2416a9ae2f6aa519b1de8a50f903be363b469fcd58f25aa4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 777037e929d4c7dd9fe9b3677a6d970653e45c8fcd7f2ac6ed747f2f4ee131cc
MD5 10e33ab0b95bad781d03716a5781bfcf
BLAKE2b-256 57a8cf0ae7bd250a84adb61da03bf8c7895e16b6fd61dae6868a464554ebbb9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 258999dc67569defd38eb206983b3d8e10802b41258ba4bc76e4e4d5ac851843
MD5 1fe69f38e1e81f991fab0cee021a506a
BLAKE2b-256 dd5ba16129e70285caca0df39d275ce8b71a03dab096c1976f36dc55b94321c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa8c2c38a535832f42f8c2a31ba70bef4a08e2ecc69c21703df107471dba64c
MD5 ba254786fd1669187d3c540dbf139854
BLAKE2b-256 6cb4e131381246bc525c42dcd9ccc49d1a4cdab2d00d3d573a4835a6086f483a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d76af0e0dcd9bd025a30c373984124cea3977fe59d66ffe66dca83ebaa7216a
MD5 5fd81c43f908a2ba6933d7797c31c1e1
BLAKE2b-256 79659fcaacf43b5c7f1f84680c3738737cfa00f5342c73ddffd794975f7db7be

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 688934315c3dae8cdc50144f9f10c88a94d71d66f01b555c2e5829dede0e2e98
MD5 6552641dd9d094394eba89e6435aa6ac
BLAKE2b-256 c68e20abeba33de3d8bf1a27db795ffbfbc19bf6fe861b3a268c0a7b88ef53a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c7a6d5ea60ad2c6e2370a19d539d2c45ebf55e960d89d2476cda1cc32e36f8b
MD5 b316dfdfa720e347cada5a9ff6b4367d
BLAKE2b-256 cf329aa5223db32c9c97731dab34fadbea581d56cbcc009dc3fa51bf27c718de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9e548a5f6ddb74548d89190e1b27388c63752c641827ab310e8f372108c5d510
MD5 58323a2ea29edda64393e0e465460eb4
BLAKE2b-256 437acb1e9c40558b7555fb07f18d507e3f357eb1fd090812e8366b349d6b2569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de4dde1ffbe54e8835878f60468dbaf688e8314a40f49eeabb3c2f7f155730b1
MD5 344119a537d027faa1d1216d3dde1efa
BLAKE2b-256 915fdcfe140161a3a5fa5bba783bdfae5405de8ce64c4bec81421d5415773019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4adc214ea2a199c83a5f6c79047fd1f65d9edecd3f8befd6a50dc184538cf17e
MD5 1f47e35362df9dad2ff0f89a635847ba
BLAKE2b-256 9894f250d024dffe809aaa219ce97e31e39d212cd5a937330004a6f04368bc69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7555c54435c1042ecf97a22b78066df6265ac64dafbd6496004cec1bb41f2ff4
MD5 133b73bb813079cac2f2edd3f55f9f92
BLAKE2b-256 9e707c2cf49026d3aee8cde833dabbcd9c0686832d6731afca1a8f3c68eb2a8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5206e297156b9585383714196b0f846ca8cb53a0f14e0d4c21d47c061eacc260
MD5 6f57bef67ce8661953ded4d5e360949a
BLAKE2b-256 158e49222d368258ed6490ecfc53e53f9584b0f3c0fc2d8e9e67da11b699e169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b139542a73ce41963618b476ea076c5255775312e5157f472c2bc602ffe33c3f
MD5 099f6a397b92f915c58b4e99d50d2217
BLAKE2b-256 a92a43b106fe698f898a101e7f053dd103951683f2b6c32a411404d14aebe5e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 545cf7f37a56dd404826a82506a814cd81c6321ddd3681e18ffb2b0224deddcc
MD5 c205fdf0f5ec980ffd5d94ae412b514d
BLAKE2b-256 f8cc9145c6d41799ceb2a9463ed9595411c276e122fbfdf0b44d921a8318c19c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c74614b1a03ccdbf923221c7f65dcc81bb2e68e66cfdf7975f485ed01a5cc9ae
MD5 38967bfb2c325c07ae9e82dcc7137820
BLAKE2b-256 8a9b32d8d184e8c2b545142fb5a2bcf66f52abcc08829530f27e0f3e8cbee779

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9b49c45337dc8926c3dd9ea51ad3eb1646635ef1169752867aad60f77304d90e
MD5 b651e4b62dccf152a93192e8ee3c13f5
BLAKE2b-256 86d1326ec60c0885ea817584f04cee981f49baeb4eae08823c8e7b19eb4556e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de825801e265ff93c9267f29be357734c65a3006d6ca6884c78508d6b1d7dba4
MD5 ea21aa2afbf1041747f12ccef7b70854
BLAKE2b-256 a2bfb371038e6f6fcef6aa62db1273ebe6d34fd7210a52fbad0ea3912062fae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1794dc33679ce6d001ebabd508a60760f2aecb9cc60b1c5a8efa044392b835e4
MD5 1d4eeda5784c08c1f33655ee111cdba5
BLAKE2b-256 89cea4a621d72fffba16cc7a29bcbff06ae56d5cf633bb811660f047892cfc8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 658972dcd977697e0eef477dd4f8d7c3f9a93252003906f492a703d47ad35169
MD5 6c535d3cceb7f49416997d46ab93c423
BLAKE2b-256 4750ce521511bf4e20b85eb735d46e8113a03ab6923d9afba4d4b3cda24eb077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aaa278019acaeff16f7034344dbc10c0c24116bddd1ca99dde4adb53ebbccb3
MD5 58e7d123d5e3a064b43c77838aa7358b
BLAKE2b-256 9cb654d4ce7de9b81398177cd81dc87a45969b46e06ce902ab920188e1ad1a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f6b8f0095e778fe3ddfcb650dddeff19481adc79d7d504e0789116590300718
MD5 6f36d7026f6df6125f7091b1c39adc65
BLAKE2b-256 35da02e8dc0795bb75013e82f1667d27ba33df2f2b43c29802e752b8fdea854b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c35604884fa538000226231fba2e32956f7f9b6390e070e2406ad856f21e0c9a
MD5 94ba581d5ba2755cc4ed7c46a695ab94
BLAKE2b-256 f6dae91b69922c7ffbbac79c7026b9965e361b3815773528207612ea61c0d833

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0697664850081d928efe3c5a6ab36fdeeb1f4cc85d1400fdd7921e403b4ef004
MD5 3faee914ec815d28c6f5b418cb87cfaf
BLAKE2b-256 7ce3fcd305ffbe0bfaa1d85edd80d248a7f71aeed7a85cc7ccd12f6d8b324bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fcef4da4ce94694c6606d13627e43fc5a7a3cc76a68c590a439977467c671fa
MD5 d83f45699fe6ea51108919e89f25dd41
BLAKE2b-256 cc9ba2d6bece31462e97bedc103033baa0bc95cc9c12857d8d87e9c1b00c0d10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a371d103f58a96da6f8f6cf65b86b782622fb4ab9f60e2c6e6aaff212ecb289d
MD5 c9a0659a2552e5a79a2853f780d77061
BLAKE2b-256 7d3dbcf2c4dffb47a38c6a0f7f303a0cfec1eb4e2bdfa693815ac0606ff98869

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 027a95602e5df468947e887cc6afa2323c301154cc2b7c9ec7acf018473314cd
MD5 75b7a9e6c138bd9e824bc7ce0941044a
BLAKE2b-256 3191bfb28ee55c7d24bb02ef91837fc3e8ce331078c2273e5b1891115211202c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41bc816d59777ae868d93dc98df3f1dd3ebc428e1f2c448dc5843866f32aaa8e
MD5 91dc70215b882069e5857536f6050da1
BLAKE2b-256 1b148fc3e6559d29ae1368a469dc399df182f58b315f2d441c8907a68a1d489b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cd730f317a154d5998ac0a02ce1d009655f22162c15c2cc94c4b1689a535cd5e
MD5 cc6af44305b307d96a017810efaef025
BLAKE2b-256 49a6824f544fd040a5c7b6185ea871b2ba58acc14500f86635ca621713b89533

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed888ee832161076a6e962ba5bdb1b1e9814ed3a9482db308415cb192cb702b6
MD5 a2801baae3f8bfdea8df3ca8e2a6caff
BLAKE2b-256 07411548ff69f423a6ed5f90c85d0d571ffcf720dc5b7da0eaa8af6b312214c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f322b797cdf87cbba605a99def9f0e81e188f81f80a4fd00f9b08c8e0763695f
MD5 3cb1a6fe88973fa2af2b5e61ba814222
BLAKE2b-256 7ae06723addf1eed5cc872d75403aeed47b34b40a863b9917714e235478c8744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39de0c8fc2914043aef33d195b28ad32c38b7d0e60bb886d9bfcce5c11b0a42a
MD5 7ec90c6ca8d5a6f2040e0a900f24f55d
BLAKE2b-256 f6154790694f165ae12b00acb9c25efe7fcfd57f173e80d29351d6b3416484b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb78c4ccbe58fbb294151188c23f2b8cf8aa5298cffc2fa9d0b777d94d0e5a95
MD5 8b052659456888b6885241e812b650ee
BLAKE2b-256 acb506c292ab4c5844af9fc1b4543e120958a96cd6ab35eb0c6d73f6dbd9cd0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b27c8df18100c1d798656d93532a9f621484b408d923c387593aec9e9e87211d
MD5 6364234df032927e71715f4c20cafe1a
BLAKE2b-256 f42bb9eabdc9caa2cee53aa13f2b94d1e069e908c225661b7b257d1084bfd3bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82793e3e5b2d61d009deba6e7801169d3fc15eeff2dc2a6a659aad01d5da37f9
MD5 43a5a64f4889b1c9db083324c7808b2b
BLAKE2b-256 2b01be6e173fb4931423467ec15060f497b87ec1feb89bc990b1e7ed03b3d890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 892a048f5e3a2818cd3355ffdb2f4ee2f4b383a34d3f5b60675d525d2e5b1fd7
MD5 97539c3eb7d5acd04522bef893b0ff61
BLAKE2b-256 89722fdd7955561775a80b5163e2dd80be6e1405f293fb313965e9d88db874bc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a5076825da20faa92bf0992ce35f1825c96ef37ddf4eeed6ae74a794cc9799a4
MD5 96aa79c80e1a860bd21718ac429a58a9
BLAKE2b-256 44b56dbd55c6e0b3dbe9f6aec6cd3b56d0d3e5d5d4f6ebff7a190f4e06774874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c369da0a1e72b6df3e41b5d246adcc4258e7909ea89c6931471c82dbb0eecdaa
MD5 73e2c48f653e4314882a25074fc65d6e
BLAKE2b-256 ca329f6693e521daa4daa1dce62841c04aa03e0fac99ccbf664ebaf8147c5307

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 74f4e550d92a3642bdca6dd5a3b497e6c3305590f6dcdaa8c901cfcbc196d129
MD5 3efd6f1b63106490d301bbf792ab702b
BLAKE2b-256 84ffbdfeb225b09d2d1bfe15956b2d0959aa399a1894c65f89954e1083502ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aeb029fcd2680d642f35d2085eef0da53234cbac8cb1918ff3421a01024e90f6
MD5 fa5c8933d9829b60a33a981c8c57d3ec
BLAKE2b-256 08fb3c7268ce2d3935e7ddd254f2792d6490468ca9543fa6c48f63620419e73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 398efac4e96a67d519e8d90ed2d3eaa1f023adc4cd0f8eea7c0761e4c6ddcb58
MD5 1af95c5dbb2647d4b5c21aa7e52f1deb
BLAKE2b-256 97b9fad00ac7547d22f42be46a42ae3114998021c8b1c2b102e75ca77f7b33a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7da5e4d8336bd8a5ed0c636faf895220c928ccb75e3795ece32ac873f899cc36
MD5 4d931e584adae970166ffa632dc01e70
BLAKE2b-256 24863c5c26501c19a7239c1ef7c8804161aa122a6b4c562539b2b52d965994dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc2841807cd39288caf0fca2a2b4085edb8e82acfb824df0feb20788210664b2
MD5 0215957fb55dea707ad7c49ec40d0bf7
BLAKE2b-256 798875e07b7ae5a13f6c479844d56d15d365abb82dbfd4a9b178013a939830a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1432b149047def0145c0d70c723e07ea20c6c653398fee7cdb62f8926b8e716
MD5 5e7143a59dfce33b70843541068e1d54
BLAKE2b-256 1ec2eafeaf5d66b0f9a0b8ea07174b02b8b7ef4bb9be0fc76029b0ca96f8eb02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81f77ff1d3c0c05a0acc40bf86b940da587fe38340f7cd6f0c3d3b0dc4b4b75f
MD5 1625203d2ac0e2fde3fb643e8aac16b2
BLAKE2b-256 3144180e54982b094d3aa79e79fecc57d90a2a1a9a54e768a3e0dfdc2d224ff8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7267a92b3c676fa278177b062c6fd7dadf0daf2dd0584460ad85c8ba0040cb95
MD5 21135eae9e09ed0f4ba2d3205a9ae0fd
BLAKE2b-256 ef6d7bee0f1138aa017ac1773a5540aa05c0b2f0359231aa08a28dba3586cd01

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e24c377340e10694fe4c09ab5a2457ad3f7c573c2336b1255bfd8307689114c
MD5 175be405796ddeb8040b6d9508a1f216
BLAKE2b-256 a6edb27d58f99842d4c3af90e1f4a4ca1be4c32b499853baea5990567312e842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f79a6a878e64fb79bf55dd829f1f39531eb14876efabb08b4ca26beeee0ad0e0
MD5 c9b8da7f992cd8e1dd093dd957af9f4b
BLAKE2b-256 7f308b6752cc100c18ecbc6dac7dec963a5dd221e1a379babc4396e8e6107a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 240986155cabcca3ce4606297049a20e0e23c58863d3edb86ce1f79606ff88e9
MD5 309cd7650f0d5275881c88ab16442a89
BLAKE2b-256 546ee6438ae96f46edbd6aa22dc3c240aefafeffc747e5c7038d5a11e1c5aa77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47ab44533054768a605f47dad7cbda06ae5fdd9a94d977b0f5ab2fcec9693f0f
MD5 1c79b93d137e8c4cf710bf1e9cb57368
BLAKE2b-256 6e11b5ea28c15827a927d1b97df813cef60207703f903bed0ae7717a6637f6ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a8b259fcefb9609d2ac1d123ad53f9e37d0055fa66aef7f5967627d1aa14892
MD5 005ca5386f2ad1fb5f36727e40ac81d9
BLAKE2b-256 00d26f2fa9eea34daf2d62373f04e6230c640582d8d2557b37b33e67bddac3ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b994b26eb0b52db6e7dbd49d6c5facede2dde08eeea6427d4b113dce80ee7dc1
MD5 a0be65a68a7f7ef69e9d42deb9040937
BLAKE2b-256 35a9d556f13c5f1e352b2247d9eaae937cd04e392c9717080431d66f1a716ca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0a7465ab59f9aa1cbf9c2cb5cb1d941e5bc0a9e6044b158992e14a1d97bc5c2
MD5 64a3ff8aad6c8a71eb98ffbf05ba8a69
BLAKE2b-256 38d27dd1cadeee98426a5214b229edc45897ac8ca01008b8cf1c3d287ab8271a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cdc28d380cd38a2f1b36e0021305fed03df2228af4a3f895247d30828a8702e
MD5 2f94b74b3d599eb564a932615015ad87
BLAKE2b-256 7e58995bc0d209ebaecad0f9dcdb2308db8cc70ce9b778e7528f1a70c589c123

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da1c7b81b008e933f8a6db6cd7d9cd3b58c6b64ebbe7bcc0cb828a37295bbad
MD5 bdf8c0d8d0132bc9b27abfcdecd3e54b
BLAKE2b-256 64fafaf48a53902250cfa0b9180e1b76f3decae98961b96002397adf4a1db250

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 813c63f300986bba37843eada216cef5362bfefe1fd6064a1a4c74554f94653f
MD5 1cea8c7891edda1f1104534b157f1843
BLAKE2b-256 008618a21669d6fe660af68777e0fb72835726ac37b11e0333da87777dcbb911

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c0201c174b24252661287c9e219f86de0440d1c85739e8b8a97aa170550444df
MD5 ac1ad14d99c01ba6543a9245087eb283
BLAKE2b-256 e5a74533a612981103e6516bf69a669180107a7b95d0eedd7295f45908491c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f96147257716e9a3b2f06ddcfd47bed5256e6a4fd524696d32c24a7486f5b15
MD5 871c25e8a688ef3f32c7dfd38b7c6577
BLAKE2b-256 28b2e635ba159b586892f652ff0be6dc73a1e902f177a7a6887c574453e841b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 64b09be3ad67f05e1b5632dc7abb6bc4360ef5ae6254ff02a4f9eb36458c5222
MD5 a50e9eec5410bfa07381e104deb7aa88
BLAKE2b-256 7f770ccff2b4bea0c5152ee1a22a5567af1e73c1dee08d294f4ea3412e9e9886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9381a83336f21cb31a591ad8fecd96aa1f9a7497918f16dbe30fa4a603efc097
MD5 f4634ee5d11f1d2b0cf838adce6d39c8
BLAKE2b-256 c602acc914956bdfe0cf8fc9d1d244a8ee21fdc1278f2fb787f5ad3f411300fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bd08baae95bee3ae1298cd9afd167edcd87c54f10b8a95b405a8b57546bc96b
MD5 d584b8dd6c73f1165f700abf45fe3248
BLAKE2b-256 649959a6db40d573c2518bb51cf7f50f585a9449c693b16548ac51a1f2beb8d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efed1d2d50bb04d9158ca874cc4ae9964dc61a9da9d78f009599274c34252d12
MD5 ec693881b73092f1a9add9a3661a262f
BLAKE2b-256 f63542b9ae17e6ac64fa49ab27fd5402bc3d59a902b53b96240053c347491efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b8f7fd4e2ade6aa2c02b496b3479eca84f9263a6a683a43c0b5819217670ce1
MD5 0e029d11eb389a98723da04754c3d397
BLAKE2b-256 60e618d4ed0763aa6604544240a73e968c0f851768583c7980f3ef41e1296305

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c55f32792b54f9425e7e7eba88ba1b474d0cbca8af15b7bb503bad27d4415ea0
MD5 aa883445c811fd77a6a5afb5aed9f21e
BLAKE2b-256 d9ec71d03d90c183d020bbed225fcde0e40403f59d9d30a3ae8be5a18fd75e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1df1dc4c5a0e9285ef7ebb153fa05c9fc6d1b215c4a28b6710981bef8150e034
MD5 553ab4d6a64822654b4ca8f9a90dfe48
BLAKE2b-256 3f83563951692dc1c90af6d0dc246e4b8c3e467092f72571083ef9a5595160fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2676cc1ff19aca9d5668583a3b9c0027ff87d04792e928821ba5a0176269567
MD5 4c2c2cfb0bcd5e145cf221271c0c2b7d
BLAKE2b-256 254b218a0c0307fe67b0647706b14a6645ea1cc7b700ea174746dec1a38a5c65

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 214dfe2cd65569a6896f98fc61b9f99339a47d5242f473d704efb560403c8176
MD5 80b9d1b9f3b20417dd089e9d1ffccdc5
BLAKE2b-256 0e8dd4b18882301fd4d975ce6087ddf50a349a650ad46a0dfda523464c57eb96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 090691d23ecbd413ed890fc1d51729a4932bbeaab49a8cdcc6e33dc4166284c4
MD5 3b508422082dd3fa61347f3b2574655b
BLAKE2b-256 137aecaa745d240f79ab409e99aab3eb84abfac629275a0cdc5857fecb1306ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ac12fef4190c2cb3d81f950acde52644590f3e653758c5ade26e702960d5de80
MD5 a7083f69ecdc537aa00090ddd109106c
BLAKE2b-256 06fee8b50fde877bd54a7df4c1bdceb5d954a0a1cd49531a0acf53880520076a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63bae42161ca6960dfeef27c1076602cc8ac32075d18341c83971ece9c219168
MD5 4c6321422a431854ae67bc7f91c13340
BLAKE2b-256 6d5a113bd3e180eb0992f312b5e9343ad53e2f9ca6af61a696a92646ea3d379c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f907b157ae5eed7b8aeaffe98d1a9bf53394be8fcee6de941c692959dd7a734e
MD5 9e4441fe7c4b8c130aec3bda8b1a36d4
BLAKE2b-256 c8952b48c4437b7e5d136721197615d703f991acfc4929bba7832048cca8c9ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3792926b2b8b0265c01fcf8a65af65ed78c8b8e20dd00987c08eb527054f6478
MD5 8f9d770519b9f6fe15549a56e9972de9
BLAKE2b-256 3d0bf55be023a34f921c20c393e6698f6a51f61e39dffa7a27b7fdbcac0e292b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddd76b8d9bc8dc41f38b5e2749e382a2654574a436148d100b73912a48aaa5a8
MD5 46926c3475edae71da47eb9d9f5d2240
BLAKE2b-256 763c2806ea77604d7ff19f907b20b32a4acf101d55f5f89cc35fb4d732ebb8e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c3ee93326e2609a1ef37d3b339e64233e502460ecbd54b7213f3cc2b479c91b
MD5 5ad2a21e1fbc75a48241591b606516c9
BLAKE2b-256 22f1928ad15c2bacb57cd30bca4c3fa9c48912311a71e26b9ecc62a4f3c61505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f16e8e21ccd9d1d7ef59657682854ee45f90c3d30e2633cbeceea4fd10d6f94
MD5 b0194bddd46a8573819046df78fb01c6
BLAKE2b-256 98076d300fb5a7c64bcbdbd625b3bb492c11da3ea05d95727497c71b0f0bb44a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d924097163a1089af195f00d3cffc7219960dbc2f5f6545641661edd031b4916
MD5 1ab1f3040cb3d6df030da54cfbc4c31c
BLAKE2b-256 67c18f434c61b28acde9f5f8e46dac59d1084815a4da9308dd90cdd9a861a56c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d4ea0f2c44f7ab1a5fa53088e3ea10c34292e0011147c94a24b86dec8dfa2c5
MD5 a4ef639b8fb6738d2aecee316bfcfcc6
BLAKE2b-256 5de87047e62a1a787a8b7dcdca3b0441d47e425d3b8e0b729e932c59fb88d15d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 06e106bde9530971930e9b64ddd418be6a5986a1ef13b8c02529d81d7cecc2fb
MD5 60631fd7ed0edd6a6af9593c8dbdc59f
BLAKE2b-256 5c1722eb986061ff2dee2428b85387199c598dd3d5eff97cb77c553d06a8ed2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ab28a8821e7b40bd02df95ea790a6550667a9099f5a8c3014328ac7f49024b3c
MD5 baaadc3969c85906de3dd1ed6a3daa22
BLAKE2b-256 ed0f48696275ca1e2f2c39b15667936c2b25ee292e2d46321ee5ef5105d70f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8054e706344e7634d89a07e1ed164b9690e36c61d8d3fa46b1c6fa3e741ce137
MD5 8093446a6bf8bb03dab89eb61bb37648
BLAKE2b-256 2dba88fc85b8274ad3160bda6c315c0769dbf5cd22d8eec7243385e4b698bc62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37f1a5b4106ff1d087e999da60d5c39b4e0d17cbbac5bf83557448db49dd5b82
MD5 0e5c22a7328d4cde425355334f143085
BLAKE2b-256 d57faf5c062bf0d7b694645f460f09b0bc0fcec693b6573ffe8ee0f7e9ae5a2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 301a4856f9ceb1ca38f98801a8dde8e502272cb1005aad0eed4d0b63557fa64f
MD5 5664f1eb01092438a92ed22eac373ca0
BLAKE2b-256 7b66433fba25eeb65ff4e919bcd6dde277a2928b9bb43579bd6bc00748e3d4ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 156df73bbfb3a1bb835359e3b83c09c4ae5be6ac41271474d860b8f25eacd94d
MD5 65162c1eb7be0b46aa0fc56d06e0afce
BLAKE2b-256 40a6cc979e1e2e35676bb08a8072e0ad8d3a0039069b9e8fc1ac85d3337b5252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b45e405100218c7f189d14260298eaef581fdeb85418772edb7ab30a79d6639
MD5 53a5c8762485bc380fe2baad8456a18e
BLAKE2b-256 3d3aeed04f32b92d7c347eae2e29d75675b2395c2aba4f39a412b843f16e3ce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f444fd64b032b24891d0bd4e74ddb7157d0087a1ff21f64ee2561ffc1202118e
MD5 e7d71ca1f12763c98cbb357b17b7e185
BLAKE2b-256 cd4e3b31b3cd59d5459c66fdc8de02c2268e265fd45af76a194be992f69211e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c6b6108d787bec079fcf046c0b3f3c46b329f806bab60a2678d22eb7ecb0e9e
MD5 62503d42a0f20993a394bcc9eb8e19aa
BLAKE2b-256 ed64b067a85336c78a27ab3ad7b441b1d86a679a6f9b3a9e2197d71647295aa8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on gi0baro/httpunk

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

Release history Release notifications | RSS feed

0.2.2

91 files

0.2.1

91 files

0.2.0

91 files

0.1.5

91 files

This release

0.1.4 This release

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