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.3.tar.gz (286.7 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.3-pp311-pypy311_pp73-win_amd64.whl (433.8 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.1.3-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (753.9 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.1.3-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (809.3 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (700.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (570.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (494.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.1.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (518.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.1.3-cp315-cp315t-win_amd64.whl (425.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.3-cp315-cp315t-musllinux_1_1_x86_64.whl (745.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp315-cp315t-musllinux_1_1_armv7l.whl (796.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp315-cp315t-musllinux_1_1_aarch64.whl (690.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (512.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (556.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.3-cp315-cp315t-macosx_11_0_arm64.whl (482.3 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.1.3-cp315-cp315t-macosx_10_12_x86_64.whl (510.4 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.1.3-cp315-cp315-win_amd64.whl (427.7 kB view details)

Uploaded CPython 3.15Windows x86-64

httpunk-0.1.3-cp315-cp315-musllinux_1_1_x86_64.whl (748.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp315-cp315-musllinux_1_1_armv7l.whl (799.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp315-cp315-musllinux_1_1_aarch64.whl (693.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (524.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (515.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (559.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.1.3-cp315-cp315-macosx_11_0_arm64.whl (484.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.1.3-cp315-cp315-macosx_10_12_x86_64.whl (513.0 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.1.3-cp314-cp314t-win_amd64.whl (425.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.3-cp314-cp314t-musllinux_1_1_x86_64.whl (745.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp314-cp314t-musllinux_1_1_armv7l.whl (796.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp314-cp314t-musllinux_1_1_aarch64.whl (690.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (512.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (556.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (482.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl (510.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.1.3-cp314-cp314-win_amd64.whl (427.7 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.3-cp314-cp314-musllinux_1_1_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp314-cp314-musllinux_1_1_armv7l.whl (798.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp314-cp314-musllinux_1_1_aarch64.whl (694.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (515.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (559.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (484.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.1.3-cp313-cp313-win_amd64.whl (430.9 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.3-cp313-cp313-musllinux_1_1_x86_64.whl (750.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp313-cp313-musllinux_1_1_armv7l.whl (798.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp313-cp313-musllinux_1_1_aarch64.whl (696.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (558.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (485.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (513.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.1.3-cp312-cp312-win_amd64.whl (430.9 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.3-cp312-cp312-musllinux_1_1_x86_64.whl (751.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp312-cp312-musllinux_1_1_armv7l.whl (799.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp312-cp312-musllinux_1_1_aarch64.whl (696.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (559.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (485.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.1.3-cp311-cp311-win_amd64.whl (430.3 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl (749.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp311-cp311-musllinux_1_1_armv7l.whl (803.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp311-cp311-musllinux_1_1_aarch64.whl (696.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (528.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (566.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (489.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (513.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.1.3-cp310-cp310-win_amd64.whl (430.6 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl (749.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.1.3-cp310-cp310-musllinux_1_1_armv7l.whl (804.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.1.3-cp310-cp310-musllinux_1_1_aarch64.whl (697.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (528.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (566.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (489.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (513.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.1.3.tar.gz
  • Upload date:
  • Size: 286.7 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.3.tar.gz
Algorithm Hash digest
SHA256 c1b90e61fe64b9cef350bf8fd9a38872f83ae35977d7ea1105ea923b565e6b14
MD5 c1b075cd0dd21a1926d3b9b17513db2a
BLAKE2b-256 413153b70442948a409367d23351ceb40b44a6deac680b3151daf2409272a313

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4ea7f0ea588c3d587056b84e3ab8c40509d9655aab9fe9ee6641e390ec328dae
MD5 96cab45d41bc52c911411516268bcada
BLAKE2b-256 2bc0912a553bc3354d9f77f08df9ca23d996943c5bf284505eff08bb60731dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 05f2522091f40a98308da0fefb003444c50acb6624e12dc99baf1778eaeae244
MD5 f6845043aaad56321bbeafcf1c57dbea
BLAKE2b-256 3be051051d6f087661392167e8c090ac6887412511f04b9bad7ea7de9eb04ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a2e4958b0d51f9713dbfd9208ecd2b75ffa83b7e2e17efb4bc2b027f95e5eb42
MD5 a9a736d7d5f1e53fe6c453ebf9732e06
BLAKE2b-256 404bee97128f87fa858000b985e90b03b554c6f6f06862af6af2ee1269b530c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63552d8b08cd157e8a2f5f23118e2d01f04a8db9846ddb951e547327a891313e
MD5 c1085005b4c4144ccdbffe7be76f3ff7
BLAKE2b-256 0c111fa9dd74ad89515af6791de6d7a5dbfef9d556add2edc2a4928608ae57b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3064ee63dec0a8feeb04a820cb2938f3b990a1147705c8985a9f7f925b9cf5ed
MD5 e65afc27ba283b416e1fad3ec7ea7c1b
BLAKE2b-256 42dca28fedb43f782799786dd24e1265f1df3799e3b749f0534ed079eb70606e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efef572f7c78d22a613534b5f5f5310222142f78a57f739f199c6f975653b9c7
MD5 1c58febf73516d3037f89d251e71c8b7
BLAKE2b-256 84b133a9996df7d6d143dd35535942e309beb67b53dd428cf13796623e4d4efd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d10503d4909ec07a947d5aeb43ccd3424c1115dbd6d3b344a35703380f1f951b
MD5 370223bb9fe5dbb428278e7785aca2b9
BLAKE2b-256 40b57c4507ada55fc6be423c5c24a23194c061e68d9a6a8f9b57b8029cf23185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecf27f2391b814874bc97367fad4c1de3b811f6d236696c100eefb3e4ce922ab
MD5 e08a84e3ced54f5792f1f07be6b99693
BLAKE2b-256 74ea6764e0594c58e265cea15f802943a010715e26347263b3ec8abf63eada94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 807518f197889c1e89c58f95776c940e6190beb5abe5d76b688b67cdc6f31be0
MD5 c90b4c451e26695a1526023217d23e36
BLAKE2b-256 6045c43273333a5630357ee44bfe4c49945b8ce30222299a466638ade389b4bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fef213e6af2e529c9abf07baba9b72ae117169424dce5532e82ddc94d649e6b
MD5 64a93082b0ec78c96320c04bd7f1eba3
BLAKE2b-256 1a8d5202d335c3a21aa2db64199f31e9ea41007b0069945c3fe8d5a85bd6c7b9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 5961009cf192c8f3b7af5126a1f3aa73ad60f225159ee2844d314bd48d9a6b8e
MD5 f614ecc90236302a5b903ad38b6d89c8
BLAKE2b-256 5378745a146f126045195409f38dc203dca280359369be4703a7ac8b25a470f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88c534c9b8117fd7429879102f703329897008a540e97c675cc1f97140752dfc
MD5 13d129b7f3c835ecde93ca03842e197a
BLAKE2b-256 9830207f287ee53f7f7317961270e8289942b58e891ddd071fcf2f2188d6bd8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 189c641cf0424d6e022146734c0de8124965ae57d36efa4a091c191dec65e17f
MD5 f0637309ff9e5b123a8330e51490621b
BLAKE2b-256 54e3c3fc63aad4646758644423d60f96157f5bd03d9967b95723d42586cff08d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 73e613661e8e2361bbd41ddf4f2f6c1f0aac70ba823d8adfd531ec0fd861b892
MD5 91aba9eec69da177abf3c288b13d997f
BLAKE2b-256 e5e8d729ca8ebb48d0c49813e587b49675b8c2dabffcb71e8aaecf2ab045c41e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3033d3530b3c83cee324fa8613c5d16f69da63f7d147ceba024e20e13c41922b
MD5 fbc643b25ddc248b642ae166b32d39c1
BLAKE2b-256 085dc533aa867c31443a762363cb55af4ec5982099fd4b4e92a56c5ad356e8ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 975329e1345cf0563071978f27581939c0480d22ed74ab667abad2e51d4a6a87
MD5 26f14a112b72309df1c59a5b37bae047
BLAKE2b-256 719f6ce885929d54c57e5ab55000c5b96c41e26953767aebd26d297382b2a48e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94963125a1b49d04ccac2eed462ab962d2924e92528d6bef7babd2bdcedd8ec9
MD5 33069786f2717dcac70d5b72e338c3b4
BLAKE2b-256 9e89f5ae72fe2bf914977d4a42e0c9c35ebc9a4d9e3ee7c24fcae66719556abe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bd1831e55835a386bca0237a802f1495e2f962a062a8993bf3540c9a35dcd9b
MD5 e2452d9bd2c463bd1ade031fdfdb4912
BLAKE2b-256 a41ee28e9ad2162d411f290c5e429b0b2d564b5c963f2e41fa491cd7860624ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f6325be11d18f3382f60bd2a4547b5c4e525632fb957a07141a70e5dc32c045
MD5 b5115ac35f767d9c767c48abda6f327f
BLAKE2b-256 f76aa8d0873e77ee4e870d558acf62d2cbac105e1f2c3c2fd4a21e2d05bdcc4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 55c7067d795b8daa5ffb0067887272368d9cd32210d2c88236f59b4552f475ec
MD5 924f4fb26f975698fdce46f23f548ae9
BLAKE2b-256 97a879190661e1e688cbb787fb4a8bf4faa8aaea5c9d641249313579df6136e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 427.7 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.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 f67c08f3bde9286be32127dab99c16a2f079565d352fe233e86e9e26d9225748
MD5 1120b3fcfcb2a2f07891777fd4e157a3
BLAKE2b-256 fffb0e369c08b96d86a94ed274cd2360a8e03c7198625d119b0426e5359bdc30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 600618a478f144feaf3fec422816274701580a7c04c2812c8286b99b84a6e3d2
MD5 45f3e89e6c412bbbbeb13fee8fcd01fc
BLAKE2b-256 bf0a63162c7d23e48719f3012d9e424eca8973a7eec6aeb3a56abf43055e3fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 67e3dd6d24f436b1af79d14a9499a52f678c4afeff1491e8522871102abef4c8
MD5 0e32e9211afd530ae1e77928489f6360
BLAKE2b-256 8fe1bf632ea5966a7dd387965c1905238432f557ab408c41fa1bbdad81d9fe44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 95ae3ad6d8e04cad153b8ee058cebdd2209522bfb641e18f29282f6cf110f157
MD5 651f5f460f76df3ad558002f99e31511
BLAKE2b-256 3608a73f98e64fee06e8e1634f3190d776493fae5083ff89b3109154b0100a7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec1d5ce207497dc7b09952d2b312da90159f2589325c0601e2c16a64dbcd488f
MD5 4953a07d8a314057aedea9cefb995086
BLAKE2b-256 5738ba8fcb9ecd525e5c159bde599328ef82ca6846492e1b42077291005061ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a70788fe0fa811afe022de10bb8b88cf699f7258e1c81d29257beaddf1549fa
MD5 7898597671ba045ae75a269c139aee9b
BLAKE2b-256 e4af8ad4eadb642fa3dbe4d0ae2853f82575edb776b34bd7edb5b5693dc7bdd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc69ec7e00d69119cd7a36e82af74ec6728791809b977f0c641bc09e57f3aabf
MD5 ae459f99846d8395f54cf5784457e796
BLAKE2b-256 0bf0544f056bebe78c1697f2647960bae202f1cd69d353bab84e9f68045b4a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0260f32b40cada6181cb2c2b2dcc656c95b505c3bf42e9a2079ff5cde13bb08
MD5 d9a22ac9291c2e8fc663091d66fb9250
BLAKE2b-256 f50a906e6c96a2990166f6c78adf20f27fddef1188010727f85a5988ad8db2e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efa77b9975970c5cd6e6560a8a6831411a7ceb026a55bca581873a2108225fac
MD5 f478390e0ab949ada7263473065f3a73
BLAKE2b-256 37fb3e03a062debff155a27596b8e526095c94b44fdedd76456cf0f3535a8cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fbdaa4e4491e5489f663c1a5d8135cefa943217faf99626e328032417d91904
MD5 8fa749f65ddeac4e8f0081327da461fc
BLAKE2b-256 c5cd11d61f4761a11d755a1e8d9a52cf7fee5cfac1c35c718d40d6f527675077

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 425.9 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4b4918c561e626e17c787fcbb05f28a6d459ea0e3164d3cb03dd39a0eb596313
MD5 c7047f0015a95c523c8790166f83dd3e
BLAKE2b-256 68b3b315e2991916ce017d023ebe116830d62faf33e0931fd018637d42d7603f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d5a841ba3a1510ca66a857f8a9c687e1de6a3016c08b1e13794d5ccb41fea9c
MD5 924452e64d3c33893dfed33228f9670f
BLAKE2b-256 6ca931fbd1232587ac404bede9a2dc0b54d3fa411e59051c161a08911df5e4e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 19dbe6d73e0fff1610977b324b3f987873b637b32c288eda8bd86462664776fe
MD5 7e59982617d03182537d7245b42e9b67
BLAKE2b-256 5fc7d129043022edddf4fca6c2a8d6894d3a5ca49fe77580dfcf323a08f9cdbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9d90d46124b1b547cae4a2348c72afa5b237ce1fb659e207e20395ab02dd5af1
MD5 fa1f70cfc91584bfffef2289d9ae5fa3
BLAKE2b-256 231eebc83232fc37bfac01b6caa1d81f1473af20624110f90c404f6cdcf7759a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33bc67150e2f68677b680df739145203982fc9f5001b34a844ddae2f6f3cdd7e
MD5 d132f4ceb2e4c5f55a88a2927121eb5a
BLAKE2b-256 d1fe971dc91273984a83d114d05891863c580f1c22825ffb19c6266c1f9d4830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d06d645c34ba03e4c8456cddcb1ac40e9ffe5019d48328ff9af34518dd907d9d
MD5 42c5f3eb566c0bb3f357ab855a39d24e
BLAKE2b-256 1cfb00111746ab562d2ed0b40e307f0abeed10820ee8a7e86d2bce1ef2dddde1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8efb27a99b53728126a300ae2e0e3706198a4bf8a66a4125a7e2f338392ce72f
MD5 845c7880b3e8b0860906caa9045d3b0f
BLAKE2b-256 e8fdcb7636e2fc99d28388de832c6f5d7782a092cf942f7d10bad25e9d991a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 259dac725c3fe98792621b788ddd31f7ebece76aaba16bb358d52a22c2ca1b2a
MD5 9425c5e08a719244c43cc5a8d2200637
BLAKE2b-256 678b025e72f12715ab2a1547249783730a2c4b346f918cde1bb85dfd86979283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35b8a02417ca56ce0ddf31e345a660038e24d630b0b5d69ebd9afe6b7c012152
MD5 ddaba69a31431d8a5f1fbf1388771bf4
BLAKE2b-256 af085315be4ef25dc556459a8890635d6c4c16647e4ef80731e831070907ff6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae156022721d6ac673f0d6e418d689e5a5f671026637bda0c6a9c2171d91fe69
MD5 82e0a7be255678e9228ca144cfe46468
BLAKE2b-256 2064287842c9792a363b5a4afbd1035c26de024cbb101885f2e881e80504820b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 427.7 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 640e96c35fde89cfd70156be632f399228d86754eb49e58a2d1292c68ef16897
MD5 ea079c506870f09c9d577bcd85f9df8d
BLAKE2b-256 b2de22fdfb38382943f93cd1c8cbb9d82a5ce0e3a716d1e347487b25fbc3d9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 36dec59ec20712d9b3ce2f4c4b69f8bd9bb909faa40d40962c38987e15265311
MD5 3fbdf01fec3166b7bfea786dfc95f26e
BLAKE2b-256 33574ce8bbb88facd5b0ce4edd00a41222c40700fe233ce36fa5fd178637ad72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 77ea28a3e3cd7821b99dbd9ac93272219e485f72ee417dbb9c8ff2a6481f7b5b
MD5 e39dc9ec9edd96d92e647b85ea31f35e
BLAKE2b-256 b23f89bdba0960389e10296c9df7e423fba0db3cd271250b7d10e1f0bcc678bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9c9765961a2e4a53d0b4914b9b295508516568c9fa8b455f6cc344e431c5d4ed
MD5 85178684cfee5bdaf116ded52d3d8664
BLAKE2b-256 44f8f250ee29d6236a7ce3c63536fd7ae1898d7f3dfd9f30c15d87b8284698af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1db05f28c26d60e72777ddf5c769667fbc506e4dff1c2221d6e9aa211a8939d
MD5 7563690b1daf4bd96332e4e5f89e4776
BLAKE2b-256 a2100ac9ab2cc460bd4b9f5c46d63c1dcf37cd2e62970c7beffd028bceab8d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44e194376347dfc91a902754f93cf90a120957b57f9aae6beb4751fa1d6551a9
MD5 2855b4612a6d9899240e911a62c17e7f
BLAKE2b-256 4540bf4d9c2af7fe7be5748bc8aeee59050c736c84d32f781a6395b7729ca5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d725a2602547b756a7679d139d9a185ab10e943af059f87da2e5dd207abe011
MD5 f9501fb37524160d4e879b5b44636706
BLAKE2b-256 0d092bcdd6deeb8facb5d0547c069d21215a01f37e7a761c4266cea6308cd815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 415102707b81533716b857e09b6ea4261c15b04e5b14140579b6633ef04d1fd7
MD5 4b69d04188203825fccb571828739546
BLAKE2b-256 99f3bd9ab686cc3e5337cd57782be9a18f4affe973f020407dfee61d23eac443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81acbcb9c2152da2068d90b13c80a44174bfe816e2e6fc2c09a2a93c4b77cea6
MD5 3e9cdf05e191b782bf6adbc2880bc74b
BLAKE2b-256 4cc985aa5f94faafebdc1a23060dccdff974e3d2367ab08bc62ddaa8ebdcc59d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2eb4a1170db575c9712c6b4aa28fa6a7144df40b54f8e75f90b9096545176055
MD5 765c6e1b21e6f9949b064b840106535c
BLAKE2b-256 546c72ef6645a5fc6ee6b8b127e48ab02800f6a8a33f84b3fca3370f98711b63

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 430.9 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4dee342f5d20949594b99a4625a736b3c77ae95bf7d178c4b3e4e6f46e8696a
MD5 dc9907b81d7c7f785a446059d27551ce
BLAKE2b-256 23efda2d425d4eed5ef564a09b3b6ecbef77cd0a2795eb5f61fb6cd359d3e39e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5426de84ebec77d726670644c8e0ad64b28fe65fcc294657968936066daaaeb3
MD5 319fd447196ab6397faafc1ec72aaaf2
BLAKE2b-256 3a0a927a06530e862af3734ec643d33d919d3343dfcb1d01c96e8ac2ee205bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 208ea07f6423606aa3bc7c0bd718714dc58574bef1f3632e0604c53721f300a4
MD5 3cfee3b25164d5246598e5223ccf4a6e
BLAKE2b-256 aac9939395d790afda281f7ff5b7bf45e0dbfe7a7357f7fb5d6f8925b6e72eb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8e7283c12dfc07054ebf98ff4a84b781dc182e1d6c0c46c9f67eb4d1e42449bc
MD5 c24b7598937b14451dccdcfafb79ab90
BLAKE2b-256 ae1f1e5cb7edab23701b7e7af90a34740507b08fc67e59a322a4fe49a0c43496

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9dcd92dbeb9f7d1d72637f84e9314d0f501ddf53e4e07821991323b4f9588d21
MD5 3d0912427a20e8dde5949222b64e4047
BLAKE2b-256 41e5d123ef146a7aa2875c1ee149ac5e6d29e95aa40a7f5e6e8a81abd53831b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a334dcfab09ff331f0b368687054ec5508e9f889e49185a4e1cbc4d7bcf6030
MD5 4836ac8c568365ed922998c4c822d659
BLAKE2b-256 3d2d32fcd796d72727c7a6ee82c755345386adc42aed8536f843dd74542d1797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08d3f6062ea7fd9cf756f8e85725de7f2b24773be415e6e89a373fa4869c7bd7
MD5 43414016ba1338d18e1b46e9e372b112
BLAKE2b-256 b6c89c3d89319cf7da64c97500ac12b3113451b88b75a95b1e693f4b1de1611c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f5beffe3ee87167e9ce427ac260e124c2f7d12c73100d583f2e2d4269210655b
MD5 9a0f2737ee3e1a4b970b219793857dfa
BLAKE2b-256 5050cde0067d24dc21106b231671e813b50e4e7fe8fbcb2f5ae56385aca67aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c047ebab1a132a4726ab89dfee281feb40158d88417d8afdce06bf14a8d1534
MD5 cd00d0760cc808442858ad1fc02d340f
BLAKE2b-256 a73b6db8872079b3e54c73bab4d8761f1f018b9cec414b043d3255c781eacad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2296aeb4eeb87ea2262a7dc42deb28641a0a26118a51a5bb8b7a301b97bbc939
MD5 f4a217f41b68eb91ae0d3da13e38a195
BLAKE2b-256 c7187b6fdfaba0b2720846b0261c6e0781bd21e08202c9e38bc5f71247ee03ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 430.9 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fcc68b8e24b15008c8849fcf4d137380cdad62c661e8ed004a18f2c8275034e6
MD5 8554514d2bfbb3af95642aa0f8420cc1
BLAKE2b-256 9ee297bff2b95da5c40ad2887e5e6521d706656d2ca9aa15b28c1a45fda5a397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bacfda1715c2dc20326c1dd106ea9495f569e38c8ecaa46f434ee21da42c1285
MD5 6cbb76622e3b2915dab20928168a1b49
BLAKE2b-256 ff61ce80d268712514e6ecf93a63f399cf08141d3f60780bad922447b5cf2c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 22304efa02d94925531c9d59f6ead83855ed55aecad631234b7c87eb6ff40d3f
MD5 a662bb9c1e2b8673ef5d32219d788cbf
BLAKE2b-256 785c6ff2e3bfa42c806f09b81d4a6c855057f83b72b046bd0839799ae978effb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c66478d908733d61feb5e6c9ab2190f76631b00490e5737991e304dde5cb178
MD5 e1eafe97ae5a53cda0bec118aeddc80e
BLAKE2b-256 e23b42f75d53a07c0427e396c5e8bdceac7e97ee2fe9f1db85a0e6b228654a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68a7e8bd2cc741c7833a4ea18bb12c64bf5dece5d96248039e4834f0dd29f1d9
MD5 3ea1d0e1f96deea1d2661b50132c1582
BLAKE2b-256 67a4094f4c6cdae05b2d3d1c5df7f20085700736d52f210463287443f7a8328a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26b4df1fee1d0bbde72501b262903e4d63d92aa0c69c01dfb3a3721b4a8b4094
MD5 00cb3d9ecf9f7ffcc59e78025146c8c0
BLAKE2b-256 89d3144ff0df9270202e60bdbbaece47b763d1d0bc28c16a773ef74f4469446a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e13a68a1560da44f6707fdd8e9e3f6f14937396ede7a8b0ee8ea0f749fbebce
MD5 0cb946b2dca0551cf133da64a6c24e6e
BLAKE2b-256 c03123cc37cb7d0ca8f94baa69c7a0897430226ef05529cff15a4165ab42f823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fecccbfa5bb62b0ce0b6e4ee2247df35043ae184d4f636f34549e6b69d18518d
MD5 0a362a3df23bb769b92db9bc153f9e4d
BLAKE2b-256 e1b7501452bf84a149d33e210eb35fa0baf58cdc7dd4739907ea992097d4da93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c88d28a05cac01958752f96f7319a5d5555b52da55969657d925564a4ff4d4ae
MD5 d2e694b2afab415f02acb38bd350682e
BLAKE2b-256 1d5db130dae9e976c929931b771e46dc434fc7081fa5b5ebdc07d17ad38ec723

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db97c7677557c22ab1534281dfb37c10b369f61bba44dd883a4c699795446397
MD5 f51e616e908670c0dc2c02201f0f2705
BLAKE2b-256 8f34d7527650ff0d95949c435cc2ecaa5939dccf7cf4be46d9fe17110330ea58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 430.3 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c32f6084a2c21397a38217c97f3d4352aed0c6b9c0232aa46b361c1f6f672f12
MD5 ce6bfc34474369e2e39814600d7d1498
BLAKE2b-256 03aac18fec7012e653a0752af8c7d6abc2b040d7f7b857fa962d24a05572b41a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bcd92fd99491d132aeb2b8728c0fbd7b7445f178339cc7945459af9213999a92
MD5 5dce040e27c19c2f15c6439d68674f45
BLAKE2b-256 07c47a707534cb11fc441d3bede1c446bd77b399e4448e2056477ae5b5944af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d01290e69856c26e8e579ec9e9596fde6bb173aa8fa5c63d8de8a9efe4a3ec86
MD5 10619065b3c490cfa1538fee5f35d190
BLAKE2b-256 d61579d208b5ef35837082bbb1ef575d4e157b4c294117d990f078b7bcbf758e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9fabe281eb3b2aae4d14e21d91597ed266357f0cfe2c4e721449d699e80d282
MD5 054faeea3a1b3ad062ea3baf358e9e5a
BLAKE2b-256 379fd37672d7d7c1fa5d8b131ed7f11f4ec94d44ce4329ed706aaee394a69dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a0ef9a200f7a6f427ce031a6e6d716a06db802054c80b163a94176d86588a9f
MD5 a2dce9eb8d878e22c00030cf27479660
BLAKE2b-256 1277ea616b783febd392392fc8fc639b0335fa7a3d1c89f45d4c40d198670b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6099cb2bd9f58bbfa8997b600b8c332173f559828d9055077d0ee8d2db8f91a9
MD5 22f583304fa7be569a2c4b787504acb6
BLAKE2b-256 db46673641dcf191dafcc6b1071b3f997c55c1c12ea9457b5b5e1cb5b9207e7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a47b2945a051168238f94bb6d7d351ab59cc6d9169ddd6eef00a520f6c8a061
MD5 ebf35831c69da7dc9779e9381abed649
BLAKE2b-256 722d0457cc190d46470881b5a6d08a949d947f8f928c853e8b4ef25766b8ce79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1808d05900f78331845d3d11110606f2eff63d5eead369e4571a486b9ba02b4
MD5 8c3d774ab121758a56484ce28bc84f02
BLAKE2b-256 8415d9e538f02e9f17f31ee0791c4a63e0a6afd9bad13e4326a0f18abbce4dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5f49c3508fdf05a3a3870cf855f92f7adb5605b4dbac94a66357585ab138f2d
MD5 e0c2445b1fea043cc7f87f7418f4e59c
BLAKE2b-256 d6ceba3d0fa29d89e1068102856618adc25d5a8f9dda865e0dbefa88c2668173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a39b7438874228db89f40fd3eedc38b17a5589dfb81baff6f1489ac3ddcf30d
MD5 3cf1ec7f19f0de8adac649da78cb4f50
BLAKE2b-256 84a064f2dc56a1e5444ab352453cc0b5e74afd418ae9a5eeb4eceb63dcee4688

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 430.6 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f993715c9c4bfa32afb1597b7ac6229401ca6c4365223a830e2fe95536593340
MD5 1470d49517438d3cd231149ae1b5eea4
BLAKE2b-256 2d4477d9a49fa7803f821b8142b8a2b146498d638e6c1596fb4d8aa855b0f552

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff0f6ca448d38a2ada6fe2c4840bc4bb3de3f948f4c75eb472a3e9e1269b32b9
MD5 c6e0be6c7e710442664df66168f9767a
BLAKE2b-256 318aa8ad116e0a18a379e6faed5384e45e2810e54f1d018be93e24b643bef060

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ffbd15c66a0564c0c5314e819f38c09e60194f575d982ae417e377eb9ef3309f
MD5 7012ce70ad13eca750ffae08023ede2b
BLAKE2b-256 a7611b31dafa51568b4208afc7e06c9b312a3ac790f33b4473ef6c3f4bda3baa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4403756dfacb5bb1ea8a7c5cd5751798dc3ce2c97eee4af8fd2d2fe96f0dabd2
MD5 eb8e2bad68c8e7d72bf424bd83f86162
BLAKE2b-256 ffe7b2fb7d0ba14bd2184014fca370a66254a8ad0d59296a9911657d6509d6e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9e334713227aa5665dea5c28d786cfc8488f40481bd2a0c3b8059ade487ce35
MD5 009febe8f8c600a5ca3faeabc94f41ec
BLAKE2b-256 f9c0b13bff36e72617464c26b7487f60182db789cadaa1b969f4efccab67601a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e822313aa8c9d06509d1d2bd0d04808959901b1bad196754ae86212c1d78aa43
MD5 1b141d0f04457300c63cc01161f9a367
BLAKE2b-256 6afbc40ff3be4889c5c17a0deb0e60e92851591a44d445f92d4b53499cd8288d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebd2d358ad001a38786663f0460139b81446152488b60e62e1488b3fdc7e71f2
MD5 79b6f45e963af151dc6781872fd8e25b
BLAKE2b-256 fbee2049841fe99a476df2f676ba4802465a80f33d98c9d27870fdc8e13f2147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41bb54150c56610318fb039724c1d743763b9d2bc87c81a6c3bf1fdf85234714
MD5 50962c67be3339ca47f7a7a9b5cb011f
BLAKE2b-256 4855eeb801f6b16360791a35dc75318803b22c14af1c13f2ec2a3867cbc5269e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 020e3f5cc4c71aa19e167899101284a9ffa145811602d02cc0264e9af37cbae9
MD5 67fe879e77ab8537454bda4945c51c96
BLAKE2b-256 f082d11c7ef35d774d089c13e4364e0f2e707fb197c5ea53a918fd62973bae98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47b93aa65b13b98cdf0f523c16bcc9caf0a902b33eaeed6e526d0e209ba96d77
MD5 7be53946e50afff42936d5aabb28b89f
BLAKE2b-256 e01418b03b06eb87b357fa08583d961bd88c595831b9eec949d30c38ad5824d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on gi0baro/httpunk

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

Release history Release notifications | RSS feed

0.2.2

91 files

0.2.1

91 files

0.2.0

91 files

0.1.5

91 files

0.1.4

91 files

This release

0.1.3 This release

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