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.5.tar.gz (288.4 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.5-pp311-pypy311_pp73-win_amd64.whl (437.9 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.1.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (757.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.1.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (811.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (703.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (543.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (572.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (496.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.1.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (520.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.1.5-cp315-cp315t-win_amd64.whl (431.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.5-cp315-cp315t-musllinux_1_1_x86_64.whl (752.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp315-cp315t-musllinux_1_1_armv7l.whl (798.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp315-cp315t-musllinux_1_1_aarch64.whl (697.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (559.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.5-cp315-cp315t-macosx_11_0_arm64.whl (483.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.1.5-cp315-cp315t-macosx_10_12_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.1.5-cp315-cp315-win_amd64.whl (434.5 kB view details)

Uploaded CPython 3.15Windows x86-64

httpunk-0.1.5-cp315-cp315-musllinux_1_1_x86_64.whl (754.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp315-cp315-musllinux_1_1_armv7l.whl (801.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp315-cp315-musllinux_1_1_aarch64.whl (699.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.1.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (561.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.1.5-cp315-cp315-macosx_11_0_arm64.whl (486.2 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.1.5-cp315-cp315-macosx_10_12_x86_64.whl (515.7 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.1.5-cp314-cp314t-win_amd64.whl (431.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.5-cp314-cp314t-musllinux_1_1_x86_64.whl (752.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp314-cp314t-musllinux_1_1_armv7l.whl (799.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp314-cp314t-musllinux_1_1_aarch64.whl (697.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.5-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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (559.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl (483.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.1.5-cp314-cp314t-macosx_10_12_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.1.5-cp314-cp314-win_amd64.whl (434.3 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.5-cp314-cp314-musllinux_1_1_x86_64.whl (755.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp314-cp314-musllinux_1_1_armv7l.whl (801.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp314-cp314-musllinux_1_1_aarch64.whl (699.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (541.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.5-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.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (560.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (486.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.1.5-cp313-cp313-win_amd64.whl (435.1 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.5-cp313-cp313-musllinux_1_1_x86_64.whl (754.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp313-cp313-musllinux_1_1_armv7l.whl (801.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp313-cp313-musllinux_1_1_aarch64.whl (699.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (560.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (486.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl (516.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.1.5-cp312-cp312-win_amd64.whl (435.2 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp312-cp312-musllinux_1_1_armv7l.whl (802.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp312-cp312-musllinux_1_1_aarch64.whl (698.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (561.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (516.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.1.5-cp311-cp311-win_amd64.whl (433.8 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl (753.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp311-cp311-musllinux_1_1_armv7l.whl (806.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp311-cp311-musllinux_1_1_aarch64.whl (699.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (568.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.1.5-cp310-cp310-win_amd64.whl (434.1 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl (753.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.1.5-cp310-cp310-musllinux_1_1_armv7l.whl (807.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.1.5-cp310-cp310-musllinux_1_1_aarch64.whl (699.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (569.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (491.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (516.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.1.5.tar.gz
  • Upload date:
  • Size: 288.4 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.5.tar.gz
Algorithm Hash digest
SHA256 46bd8a0ef3fa7daa2c2643d2414d21cebd63589d3a6cc4cf9c5c95c72b374847
MD5 f8a896e4c6a790821d03f4cd51e95e2e
BLAKE2b-256 ce396b2fecdb36cb688a6d443a5401064ac7cd48a4b0339fd5d757e50e3bb688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6261646afdc2c96205b2bcc418cbb1e36e8897476da869d8b8405eb87c5dee1
MD5 c11d87974f8927a92a33e73657f13bc1
BLAKE2b-256 8468c05d8b8cca7add18771c10f54f3421553cd6d148bb8127f751a8a6d23ef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2b550c2aa71ca74c169fdb6cf389490b5ab56b63fc6a3115193f56af4485d5c0
MD5 42a4588f06a6ebedd21a9bc8cbca72be
BLAKE2b-256 3745df3583c14f025e37f8c03a4e45afca25629e9dce64c1703e9f909e5fb972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 47a72f7d6fd442f545756c0f0a53bafac38ad83395866e9b1c4614b94d94b0a4
MD5 bd28a34d302353e27f9c1b23cd727a1b
BLAKE2b-256 c057583c176976e5ec40011b0977de363edbdbd4f50119f25190760996b6d2d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c8b2e756dca845ffa9bef7ced2dbc257f645da2a01c6bc0df70d08c4b8b79d66
MD5 5874c4ab2a7f337c55dbfa6a1ccd180b
BLAKE2b-256 cc6d843741a35ae82ea3958d1339fdfb0014f479660ef156d8d100f476ae5964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 427a9de5625ca70b6145f5c5c2dc91f902badcac349342b7c28a458ef0433e80
MD5 55aea6a29fab67f3585c79d37638cde7
BLAKE2b-256 a6ed70b37210e496388f7b52fdfeaae11f93d492678e94de5cc8a5372bebc7d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4dbf2a4003ff9547ba1abaad694ca13b2d3ccf763cbe44a191d5a4da8ea17ab
MD5 bc710618f6dde8a1e097ff36aeb8858b
BLAKE2b-256 4664d9df0a755176596d859589a432f2585a0158f38dc97fea0764e0aac12d0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27a9f4e39c228205939a2abdcada6e5147d1bd702e26829747db28019d6aafcc
MD5 cd531bc75d432ec8ee3365af76141d43
BLAKE2b-256 830ede269cab797d7d8e1e9787d946b126b726729310e18c261b6782a7bd946b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7070b6332faca06db0e5e6fc9628302ce8038cf8a62b1ccd3f907b2cb80ff18
MD5 6e249d16701fb162596448f1f0ba10b8
BLAKE2b-256 e4bcc9ce008ff23e59eda39b4521fed2338e9c6db13cefe24a7b3b3b4ce4777e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cce0b7a9125f8e66061036a48f168522f4674bb2bf11ea9a583ae909b3b55684
MD5 b7bbf0d663e2ef129568137ab7215318
BLAKE2b-256 d15664236bd99a0603bb64b4f4e7796a9d50b849d531f5d628d1c56208c76b9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec61a1c658b29db32d9d6bdd41ad61867b55c868cee7cb5130d4bd5c1c0cf278
MD5 1dbd7385594622913cd16c8ebb560b39
BLAKE2b-256 c63de786d98f3b66463df77e73a3fe951dabc87e679a2d4d31c0380651a64514

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 431.7 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.5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 6ae22bf042aa095ed9a5e39b4fa0152f1c72cab710822de0d52a8bdc7b6008a1
MD5 f0150f014160af5737bd3b168aa86d35
BLAKE2b-256 1f8d0dc090588547cbc755e0c3bc66cd798659caba9350ad9d3446f4c676b25f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82b25a316cd63e1c709e5102f0317b8b11b239f343d7f54bc14ff91240a05cae
MD5 aa82ccf0e1b4b8d856d0c8904c94dd9d
BLAKE2b-256 bff70f662b10a98ab728f08a77cb1892bbaa7d01b5142c3b7b067edaedc1867e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e31d8d0507c414a3a8a59d777c62ba66249891bf54a33313bd707f9af3648132
MD5 8c8115d17e78d6101f4046ad92e16fa5
BLAKE2b-256 e23017a63f0970b1c7bf501c97dc45390c74a2e8e6a00a353c3233bbfde5e095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 594837686bc9ba536ee9d11295db1160bd30ccca63fc473ba7da0bb5a9a5564f
MD5 bd741992117789ef3e9142ea220a0c0c
BLAKE2b-256 0fa8ee417425448c3688912c4ee3549d046665f1b19abda51c91f067657110d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2804ab0118406c37056b873f6bbc2ecd7f81ad898463c9cfc3b6bbd326d5b95a
MD5 690fac0d480acab0390ceb8dc46dfc1b
BLAKE2b-256 cffe089cd299290efc7c2cbeae0e84033e8706abe34672296016b29f6db1c374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b73e9ae7d45154746c06746a702990aa24b9e80397521d69cd4c22deb81a843
MD5 86898993b521ed80b0c6b1c6598b97ab
BLAKE2b-256 18f4e6a16d40c8ac7f4e0da3735c6a42d2ea72ea6354f6e79aa865b42b8fa302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5aab354d1473e667a84d95579132c498b7c4d8a6f2456edc17ad376148f2d46d
MD5 fe2137e5166f7717da4426d58413799a
BLAKE2b-256 ec0f57a87b8d35b83c7dc92d2a3436eaaf155a952c9e2e723e685c27eaee23f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa28d3f8c4d1384acd07d239ae3759e941ede09ab40ba12477f2a1459537f377
MD5 2278ddb5801b405acdb6a8a50e364a75
BLAKE2b-256 8b7c117186f9c929e17d18390860166a1f82069ccba3c6f38a238365ff74b8d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5f199753132f062014a63d492de1069b918668f79fdce99d4a8f21d626f6717
MD5 bd6a71fe4c3d115222ef189bedcc3f39
BLAKE2b-256 0c707e1eee33ddc6205d928b6570b7503965bf174222a4ff8d017dcb23e8c9a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d68f544d635718707addd5edca0b90140296f5ab83b841673eb1a9eebe82f3f6
MD5 3aa356552274bf569c141fdbdb6a63f0
BLAKE2b-256 7964e035897e17728c92b8bbc2f17f0d12a8cfdb1e30fb31c47a8d88e1f6bd51

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 434.5 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.5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e74ddc88412e44fd5aa43debc452fe64507acdeafa1b15083ca15f2407050f3f
MD5 b86d505bf27c746b7f2f30595a358c54
BLAKE2b-256 8547847dbe96f5816d9784eb18531fb5ff12249317336f5d9769d9dc0eca20f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f819e02ce0e9f0b8d6b3e5dd5ff91feab71685c85dc4a938d213ff75417126b3
MD5 f78af6b28b96ea2876c54246a4c92418
BLAKE2b-256 c515c67696124cd79a711fa04cb270b52a39cd97fc5236be3544f2c54d20e1f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5d57c2dc41721c6a4caa83aa1a655af04c0ee0fbfd041839f02ec40bc460b024
MD5 ee571d618b106eea2e6f9cbbaf25de83
BLAKE2b-256 79dc8b4e67f7a5c02a8ee5234ff29ea49347bb7bb41d69d50b13d8acf30282cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8ff9cc3e37f1eeb2ad3d63f26fbab869d9fa7494c4c384a8f5e7205f8914ea1
MD5 2cf190b274e9618bcdd349c2b5c84547
BLAKE2b-256 60e3a10e8c8d3300ed17a58d3e8f2a87e8fe513216ade434d00867bcb1209032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92ae58570e330c9ee734b7a746ea5cb242334f4b874b4c629d4e89c626770b44
MD5 4c413e7e1955135829267ff46d11b11c
BLAKE2b-256 4d533942c35305f5f3db79b8b3e7016f4dbfddd92d58d6fa49d96ff9961ae683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4065c81fedb5cb39220556c680c05c44fa796be69e79e464e37dc40150c8e5f4
MD5 ec79cc8eced411a6e401cbe048c1db1e
BLAKE2b-256 feff2718954bd525d867f53f5cb6ff1ee1c5cec119ab1dda4179952385573640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7416e633daca7eb319b732d3ad1a990dcc5fa52c46a42527d5c148fef2becee
MD5 74d86d006a3e33630c95b17853f181b3
BLAKE2b-256 4ad574b0c2cbaec9be074126a404567a8622f12560f73279d8158cd5249240af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd2009ed6c5b078d8a5f6bc76a2a1615c328fe19c203a980c6dbc47b72615a88
MD5 bce5d3583b0dad1c6917e25eca02420b
BLAKE2b-256 bcafbdfdad247d0307ba81cadee8a0370042553258e6f1b32ce9d231cd523450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 840616035769b1f3df05f76e764f3c8c6ea37423d25ae86af94b524998c715d3
MD5 7edfa2b40634b067576d35b0006bdd8b
BLAKE2b-256 cfb8fd98a96e121b36913ab8622bcf96081f39af097e1701eded22ada7260786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e40e4f5f59e196d2946d5839113a4d9ed3b4b7acd943de51d922f94c01b11da5
MD5 0e10e35116161b5917f3d4ef194987ca
BLAKE2b-256 dde2ac2e559a393e77bcbd3c5ce84f4e6f6caf026eb9671cc19f7dcf442f2cc9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 431.6 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.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6e588e5edb341d8329210a88020480fd272d2daccfc3b0e6f175e11c00a8e5eb
MD5 d2ce41c50dfde2079cecb5e884024d9a
BLAKE2b-256 e954dd838e8f2408f39b2c3f557e517731d84390e63dc72b5725877c58fda8d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3001fe130e9af09fe93cb4bca470083487db00235f1c6fa7e458e4597070b54a
MD5 d44d432fe1da5ac11eb9e1b70d20b72b
BLAKE2b-256 9907a4255705e203c1abf3e31135e8b22c60f982fe395063d221d1d8dc5c21d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ceab4b57fbbb5e2bafd4e9c82b9687e2b1522ae20fe59cd9a54857015b0afad8
MD5 9fd87374593e9c9d667876a418b8cd87
BLAKE2b-256 38e11387900b850ad4017f1dd0d7fd5dfdd1b2cbec1ef7bb1691466fe7ffd845

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6fa39e4dcfa7be88d505995c8029b6642facf0dd659b3c8f936725cadc5b3b77
MD5 025490ca4073c90c00243840306b11e2
BLAKE2b-256 8affddd7674ab1079a6848305a023f1e5c30f00338dd16b3483dd0c262b16e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d777f8d6c8158657d73e69603fb28ac38012d31e7ba941d699d633d522a3770b
MD5 3160561f3637e449f9593ee815480bff
BLAKE2b-256 5c634491e3dd1e28f711668b90056b052c3c5c135538b4bab2a0f817192c0c78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 927b62bc664917f61148e38d51d377fbaca41403f0c3a6599ef8dee9a66bc362
MD5 8c014fa3376820e76938870bdcb5a089
BLAKE2b-256 fda87dc65e2cae594591c27435d04d41d9d62ab4327f00a0e1a0187851b0e286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15b17771bab18cbd650809a3ba66207f4a7991b4d4d7c2396406daee7151a39d
MD5 7f1c47e3148ef18c9547083cc3b74292
BLAKE2b-256 2e8a8f12da67b317d95acaf84dff73317a2a98497b99328d15d8491d9e321fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 865c3c38d1cf055c157fdb16f102e79d557bde784d940706539f3190b36eee5d
MD5 ae5b4c3eb053db380301efd60998cf39
BLAKE2b-256 78fe439bd7a15d8c317c8afcb374a5963ebe2dd2684a15ef8df426a279b8d24d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7caf2a19c8325922f2c56de46621951231362fb7ac1848f9c179ddc46dfc3623
MD5 45bb05d97be0e29061bfb259cad9a87a
BLAKE2b-256 5025c0120c3b1e6a9923074188c5b835005b30a25434e4c7d1bdc4fd2ee8e48b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c26228c5eacb23ba0939fa18f0db16dcdcb257fb594de3b0c64aef114e848c5
MD5 6ac3cd23c11fbc03a857cdcc480916f1
BLAKE2b-256 bbe6e8dee4af0830919fe23819143715f98f5ccc2d2ea7306376ca79e45b2ae6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 434.3 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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1bf7f5cd2d24279f7db4bd44c6cb3ed2a36956c0ccd7dfbf04e3bb578b8c84e4
MD5 70564abc59927aa7a08a3d679f694992
BLAKE2b-256 b0db1d090a21854517f98c40f80a6f0df9508868576e538181445318c49abf6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38b8471f4bae5307516c827428fb27741e36499a89bb4a312c17e6fd73bdb6cc
MD5 b064a6ea31ccb81aaa2c5e907c1284f4
BLAKE2b-256 2b9e07bec637029c74262157a15cda67cfdef7cce729fc1e724f0f744bdb8700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d8e5e05f6baef273427d9a4c5f1faea875979d86311da06d987b8010b246a096
MD5 bbc455544313f9e04ea80bf82dfddcd6
BLAKE2b-256 c556121d84d95f86d711f2177cd82a2c8a33bcbdc79c9aa3d55ef14483a6dc04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5d0acb6353982e46e8da8760342c20b19ab70240a04e7f900f67be7b6e8a75de
MD5 8fbae05938f4e4e57201529d8be43e78
BLAKE2b-256 0b839fb5400bd92da71e5dc30e7c89c75ab0c75f072ac63ef998dfa9fdeea38a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 291c2418ce0eeee8f2559e6a8edd85e4f0e4cd96197b8d8a7dbbd26c015e2dc6
MD5 b4c3f4b83adb8a72c07bc2637690d006
BLAKE2b-256 58214dfab12e3777d4dda2776d652dd398d90b478501c799beecd841d38831e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 629e4c3185a8c345aab6a187bf1f081fa265e9242440e9689ffbcc8cdf8dd7f6
MD5 b5066b45e624bb1d2472e70f1d601c26
BLAKE2b-256 4a842e738ef4fda42aa198fc81cc1e8775ea3a2491d47e54f61b27233a6e120e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdc8df574b3c176e10e991accfcaec53aeacb50def3488aaf2313fb29b6c5fdd
MD5 a19ebff1ebdef86102510d00b5722401
BLAKE2b-256 2dbd0b5cddf43cc9730adff582ef77c09f0c4da6ee4012fba1e1c15e3ca20675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a005c094dafe091d1b64612e451cec8035e5f2d770324362bdde4b90f34c7631
MD5 5d682b3608c83b4fc20f32a4d56065a9
BLAKE2b-256 de8e26ebc42aa2c3748afdf86ecac9d93f1203dc8fad0c1644fcfb19f453d239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bed89b018942d9df7c9f9562f1dfa5ef9f8af6df16e56fe65125db04ca784be8
MD5 69584b6844b328a38ebf18bf29a9d232
BLAKE2b-256 7e110879b99ee8c87393df714876b311103832473cf5e0e5004e121ca7021955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c26840466c30954521e68ba763a8b90628be4aea2b3ca8535d7c1f5e64e8eb90
MD5 88cbbd0913422001d6c1ffebe006fe88
BLAKE2b-256 118902e71437f90f6e67579c2a2da15f3b09876f383776e04c7aa67ee4395e32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 435.1 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 49938043fdefce9011f5dfbe3e66bed5ebb716ceccfb617482fe0db8cd884119
MD5 aff2f15f7b6cb5ccc37014bf3cfda11b
BLAKE2b-256 55dbff849b4af644a0115ae7936521caf93d231f817e2e9d436670bdc2868d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 155eb16c51df9c2527864b10e1f9475651ec3da35f6b07b039235e1023680c84
MD5 cd75c0afe6ff38d7ba3eecec08eddb9a
BLAKE2b-256 c682e28a2beb4a57507783bd35908c50838bf3ca42d1552047b389c4c1ba7906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6dbcfd508829261c9f85b1bc1bbc43db11d0e9d585a53fee2dca15798f30fd2d
MD5 2846b7406dac0516bed97d598d9c3df6
BLAKE2b-256 a9598c0947838c6ab0fabdc9b240fad006cc8b194bac84cea64a28bfb897b080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6aeb2f143603966d5a5c9b2403afdaa923c894c9c29269ca87277414ba64837d
MD5 579ffc43068ea838eb2aeb77a3a1ddd7
BLAKE2b-256 9bded3d1f42f1cbf89b6384668ce1bf753dd3413a7fbaf8b7965ffc451738e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bce36e6872870df31285ab293bf13e0b109a447fb9fb7769c4ff07e0ac690b46
MD5 6a5acf4c1262c09ba68fddb341ff20fc
BLAKE2b-256 861678b2398f2dd10a092a92e55ce0c6fbd699c9d7952f67008e0dc4dffb8bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 717a14b8bae8ebb065dbc982644f430da7e9b9d160ea71d62b57f6745003e2e5
MD5 e59cfc86d83d5fcb526f530a2392f084
BLAKE2b-256 6289f45aa1fdc5681499770c3286dbdf708aa51db42f999115d0d9ccac867730

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e31ce955dcaddb8183c061eee6a392d0d9814cfe47e34a0e28daeb3146544a0
MD5 daab68ba2a6ba50b8651b3d8263e3656
BLAKE2b-256 d2ef02a825da65b630af472347be1a80a3113f0542aa1e685f7db3e18e041c52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63f081b866deabe2f8ff33cdc231933de2b8436aaadeae17bf5070f2c77e196c
MD5 6320b7fde9632a49ad31a336a614935c
BLAKE2b-256 121469973cb2f4bce301a428324e1fabb5c7bbb2c0eeb34215bb571f29055965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 576e018ecd08b80962409c18f93b0bcf68706df94ca94f8a47577987b803e31c
MD5 bb55df1eb8d0ab0e9e30512024c0e41a
BLAKE2b-256 76a48e60fe9f99bef5ca2c536ec7e3d92dcbd2c5782a38640c60b6bbb336c677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f48e27c4ca6c7a757eaedca797aa02ac5f3928ce289094f0b6b11c8ea4b4502b
MD5 054924bba4ab93022f7765cf27a173e6
BLAKE2b-256 5703a2ffe8a2b8bdc28620f043c807dd92471e75ad4bd7a8642c049acd657871

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.2 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0b7b8ad5ef849e62098ffc5a6f855c446b4cdfcf84e604da01204b410482feec
MD5 20b1f2ecc6a8adaf362855c6a2c33225
BLAKE2b-256 b1d9fa757329405169a6de4ddbf0f8f53d98393e5a6c3f4b1cca31990de1e060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d34410e82ff1dfe761240904dcad008d14ebd245c0aa3cf959c938ff96cf5f37
MD5 d72f487163fbd946d349ec0be29e65c8
BLAKE2b-256 521946310d79c296d72b83051e4457055e768ebc70b7efb72ccd94c061953f47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 92cbf6c16ea416fbdb241e710fd26a11e6633b2eb308cefc8a0ac369611c5031
MD5 8f105ec5c72bd9d738f0551d05e37c55
BLAKE2b-256 99202194dcecf258fa83b254a1233a22f02aac906964684de281057f41bb6203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1ec8b73ed1b7b8e30a1f8bc6cddf7fd72df9e30008b20d39694bf4f0c81d1de3
MD5 d8a3115dcb434b0e8751fdd243da8d62
BLAKE2b-256 0940ac4c2a259dca0380172ea3e76c0040c457b400aa3c821cee3629cbcad88e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16f379bef306f2aa11eed1918194dd64a9c2f3a307d991c67f51cc5e92f337e7
MD5 3e214f0ae72e36a5ba178dc2020cf952
BLAKE2b-256 a907998b5553da6246ef0e7e4a0410c401f6c123f20ac677c1b04bd449efd500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90b99b9e9c369daf27ed79ef40efed04b5adf825b0743d719e8c7164eba40349
MD5 40ddf708f7fa74afdd328de47226f082
BLAKE2b-256 9a98acbc237e65c43561f96d16815a0f5578c606e74ba4c0cb446d53574ab99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c05d6c78ce92d119865ed658a44fa019099d1ddb16b1f85ffc81c4feb693589
MD5 313c4fb1d7924179cfbef51d3888a7b4
BLAKE2b-256 26fbfd1f31b8e9b421d69f75ed24c1d4fa80d87d95ab795f333040207540bf08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c274c9d784d2950c5d34e557904e0d3c8cda9442d0c4ad2dd58da46a51497e2
MD5 a5e77c963d0e3bf75dd9510b29bab146
BLAKE2b-256 934bd4d6692898ea138266f951ec5739b951b9ce6a642a9b22d4d843d4821696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 506bec02926292d7362b1cf21432b357e6f73a24cc26984edba17eada405f5e0
MD5 b5787e6646faa91fcc60494638ffccb3
BLAKE2b-256 9030f24bab795837aaac157f0952aa8891b7cbce39fce1e86f8606826f0bc44a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6892283e42c974059288bd0468e11b05cfda5d10e996b91598c3d4fbeb365e8
MD5 d6e93744de13e44802f21e5ccd6445b2
BLAKE2b-256 35bdfdeea8bfcb5eb9c7ea339db38d3c4a3fdb45af5d297cd8a7a4496fa34edc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 433.8 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f79f2154b749a4083eac0bc98553cc9274e1b56beacf0af87c418f23483afbe0
MD5 9bbc0446ee86ce520718b84672e7fd40
BLAKE2b-256 a2fb1b24f64d22a4f589781918e0f20de22329642546fc286830b75e5c8a392d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2bc4356cdaccd17a38b1dd3b1a0c2cc7fffa1af4c982933849791e9216ff465e
MD5 acf19d9e5de1c1fcf765ebf663e3147f
BLAKE2b-256 110ee8f9b008e244ad9a3084ceb0dd1cb22a66896dba4e92d8c6ea81cf170527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 38d77bdb77e198c3833e8ead15df13b9f97d7727d171e3a6c31962a28aff8207
MD5 fa17eadaa95a35e3e7d0000332b37713
BLAKE2b-256 8b839bd0c80a69f0b55c4613f72bcea4f108b945ab19ace36ce34af45fee7658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7c881dbcbe2a62900c09525d5e7e83a73f92f3393443dfd1e988c70faa735af0
MD5 bbb79ba5555bffd605fd8e43275c1269
BLAKE2b-256 06aeddeed8250399e73229661037b7a04d21c451158c4fbda41b4274a7668b12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 829495bffe84531f6fb2aec0f72f3fa542c2279919bf74fc740537559dca9968
MD5 9443926c044b27831805f24bbcc8bbd3
BLAKE2b-256 0431a668ef3a44a548c3eb18c4fdc3894ac2bc5bcc16b075ca2874d952495283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b684a2ece99d5140f3020b60d9016c62eb0cba6b5ddbf91fd47f7adf7b83b2c1
MD5 90d75a608397d67a27144deba9c0e872
BLAKE2b-256 c2b4a19fcc504e6d4950752c14f1fdc15505855517acb28fba8e68e68ea5f165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67b6a246a74e5963df1666a381f87928273d75ae8469c1f94b034ee719fdab21
MD5 ddbcd04b8379c7b4a6acb839c6fd9859
BLAKE2b-256 1818f173d90af4e3453ab356ae880366b805b52341a0dcf0ecfeb3d4543030c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0fc0aa7a6eae79e52208e4f77e750992528c7383f4bef86564e182073f1bb64f
MD5 e625b5c5b26ace889fbd77cd75799011
BLAKE2b-256 3b94f8c21beb04bb24c0e9aef9d5dab7110a88b58fa006fd344635d91742fc99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0be45bad83aaafebd3bc34d8467b240bce7518e8ce2372cfb2b494d4026dbbf
MD5 10e90209b1ad1a9c6ad4be5369ce4955
BLAKE2b-256 4b71bd29d1453b44d770370b5283b507e088d56fc25019c78a09921dcca69574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b48e19d6221027d4f78f559202ff3bd54202390a42b9bc23a21f02c7ee12b46d
MD5 0ed716e3d14cf8e84a4e7b6fb2871f6e
BLAKE2b-256 c5f67451ebb9bcf37a3bc6664aa70c2f1990b7caec6ea15e1c18d02b15b8fe3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 434.1 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6896a0324db419305fa940a6b732fc2859ab752fd2dcf679847373fccc2cd6a1
MD5 1e20bd40df4aadda36d4bbbd7880ca44
BLAKE2b-256 bca64e13b720761db4cd340abd70a20be36cc81b4417bd9e45852d4d611d79a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e09ac977992de7eec1c673ac2c2b7a85faf2d16820baf4a3998cac39afd7d07
MD5 c12fc4dc5575839a0c2723b9a8918ec4
BLAKE2b-256 858c62bf750a84e9d7acd24bd0889a959d3366f1a015996e8fff7c285b679cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5935f3097077a6d060461c69585be9d5781c0af922ae90439e875bad0faaeb84
MD5 c65be539c25cecff1750464fa30a5a35
BLAKE2b-256 272903e6c654365db9d24a2bc289ee98ca1fe820f7f2568b5b4f36a439e979b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae1d60801d42b10ea3a9e23f69277a53b02595da3432edcb1efd1bd718030ef2
MD5 c262f61f7f30bf4ffa079fcd4641086d
BLAKE2b-256 bea26d16ade8f2dc1ef08b29ef7cb407722aee7d7662c93116bdd379c2ff361c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b74eb764f45f31603ac890ba0e4513eaf64e87718835cafeb7b840fed231d44
MD5 ef844b943bfb02961fd904b4d38de583
BLAKE2b-256 e2972587697852bee507b398a57ef940a1e4efa344905b411cc794f5d380e72e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7f3d61597ecfb570cacfeab1642729449ff956577f512ed9d8759d88a21d7f2
MD5 122deaafbf91a971066978619523e402
BLAKE2b-256 65929713bb0bac0ec311084725273e2852e4bd88f82d5665436bc810b833245c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66931aaec252c98e3507318c3e52fc1941b43340edace136a3792823d0c4dd88
MD5 ff67d021b7a44a8bf3dc502f42a2fee0
BLAKE2b-256 66540b01b80a9c0a63f9a5d35c9873a91e02c3222fbdbf3af5ccb5ed1d12553e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e5980c112d086d04a0214610d8d2f21aa480149ee9299840c648e1c8bcd3def
MD5 ce13a32eb6a732aa3bdab9a59f30b32d
BLAKE2b-256 a70bb3c0b7b00811e1f6cd559afc43dad079ade459ec6c7b3ceb967b2e86c1dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b6f34033b49c5e83fa83e47eb8b197a1d0b7600fbf95f526bff18db73e08228
MD5 25934cb8513957098ff9bc7c5118d955
BLAKE2b-256 0f3c28303863e15c15fc498686accddc4beb1110a9e502d2d4edf815561b5180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b372b5a7a317abb76c75b48aaa9644cd8a16272b91fead59379bc5fb71ee040d
MD5 8fe0a290f0f9e4c153e03a6352c0e862
BLAKE2b-256 6494ccaaa2b4f0ff4754bb165c6a8596397787c229a74ca07b03c96251c025e5

See more details on using hashes here.

Provenance

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

This release

0.1.5 This release

91 files

0.1.4

91 files

0.1.3

91 files

0.1.2

91 files

0.1.1

91 files

0.1.0

91 files

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