Skip to main content

The Rust HTTP library for Python

Project description

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.

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.

Project details


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

Uploaded PyPyWindows x86-64

httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (752.8 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (808.2 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (698.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (569.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (493.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (516.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.1.1-cp315-cp315t-win_amd64.whl (424.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.1-cp315-cp315t-musllinux_1_1_x86_64.whl (744.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp315-cp315t-musllinux_1_1_armv7l.whl (795.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp315-cp315t-musllinux_1_1_aarch64.whl (687.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (510.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (555.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl (481.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.1.1-cp315-cp315t-macosx_10_12_x86_64.whl (509.5 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

httpunk-0.1.1-cp315-cp315-win_amd64.whl (426.8 kB view details)

Uploaded CPython 3.15Windows x86-64

httpunk-0.1.1-cp315-cp315-musllinux_1_1_x86_64.whl (747.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp315-cp315-musllinux_1_1_aarch64.whl (691.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (514.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (558.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.1.1-cp315-cp315-macosx_10_12_x86_64.whl (512.0 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.1.1-cp314-cp314t-win_amd64.whl (424.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl (744.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp314-cp314t-musllinux_1_1_armv7l.whl (795.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl (688.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (510.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (555.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl (509.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.1.1-cp314-cp314-win_amd64.whl (426.6 kB view details)

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.1-cp314-cp314-musllinux_1_1_x86_64.whl (747.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp314-cp314-musllinux_1_1_armv7l.whl (798.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp314-cp314-musllinux_1_1_aarch64.whl (691.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (514.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (558.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (512.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.1.1-cp313-cp313-win_amd64.whl (429.8 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.1-cp313-cp313-musllinux_1_1_x86_64.whl (750.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp313-cp313-musllinux_1_1_armv7l.whl (797.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp313-cp313-musllinux_1_1_aarch64.whl (693.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (557.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (484.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (512.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

httpunk-0.1.1-cp312-cp312-win_amd64.whl (429.9 kB view details)

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.1-cp312-cp312-musllinux_1_1_x86_64.whl (750.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp312-cp312-musllinux_1_1_armv7l.whl (798.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp312-cp312-musllinux_1_1_aarch64.whl (693.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (557.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (484.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (512.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.1.1-cp311-cp311-win_amd64.whl (429.5 kB view details)

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl (748.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp311-cp311-musllinux_1_1_armv7l.whl (802.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp311-cp311-musllinux_1_1_aarch64.whl (694.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (565.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (488.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (512.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.1.1-cp310-cp310-win_amd64.whl (429.9 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl (749.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.1.1-cp310-cp310-musllinux_1_1_armv7l.whl (803.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.1.1-cp310-cp310-musllinux_1_1_aarch64.whl (695.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (565.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (488.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (512.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for httpunk-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9226139993f850603917e0e398a480cd6cbc4b9b21f156a7c8560a37aa76e1a9
MD5 ea22a5c4edf0b164b4b5c96895930eaa
BLAKE2b-256 565b0d9be88c88103bfb47dcb7faeca44f9a106c1ca97bca642e1c65911ad0a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1.tar.gz:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8c8f3a12fe24bc6d57323bd20c0fdd919cafd19e8767eabd95aa9b9f63f23285
MD5 895472162910ecc32e9bbc187d57762d
BLAKE2b-256 888bae93c2464aff0250b5ea3e6459e087b9b82ce1d14c2e94de47e1faa31969

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 981f8dc02b08a2c3e3bec26c208f4f42d2b43e3d10fb94cdb5b9ff4abb79fff5
MD5 70694bfcfa3ae6fd11cfb771c6f186ac
BLAKE2b-256 4a681c0d3283fcb298d737eefa16fb38965ec81815067c866a83317fc1aa2220

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c0c8eb9df5f874ad1a190102ac6f9b5ff59ca6df2eb212912857364e6af013ab
MD5 e632f566e740601a5ece779d31c88514
BLAKE2b-256 8421e9c9241f1b85a663d72bf05f81bfe1f41c3716f8bb592069c269585361de

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e2e097bc62612d36f1798651fc003083b5f8df1199152280d7d58a7b8c15cbc8
MD5 dad05cca67770ec8db796bdae5babb49
BLAKE2b-256 113ac9e706a27664dec9665c811a5d36e52ee7cc528825f8af1694eaaeede1ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e68f32946bf775804bf5752b3846bcb6e792b8291e2fa50740e4f5d493f4067
MD5 8e14a8ce93d2956668fcc6db144326d4
BLAKE2b-256 dfdba8ee132167b0b718f46a44403c65971ad177658cd61b07a0ef39a0da21f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 793dc0820e9753c51335e72210af08df7582c9853ced271f0fd52b285bd44875
MD5 c747181c415a9183d093c4f364772283
BLAKE2b-256 ac1900730a1ac5d72d1e5853f4d9930343b6d526a17bd76598d0159d690dede2

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2fd5c68c01e44e4900ac321e4d9f15e31045b6c3b82964d586af4f08d6f7bf5
MD5 471fb310627374c28f63ca042db22eb5
BLAKE2b-256 72d7fa3119ae21d4067b4fa5c4e2f236b72b311671fb4d00cea489f0ac78464a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac6d68557e9c07055e1c36ca53fff6cb42773594f203bef85694a8b993ed9fa8
MD5 e5cdde3dcf701f91ed25c73663cba8a6
BLAKE2b-256 9411546fc8749d54b3abc73ecf582570fde17ad3faee79ac71aff5767bbd7464

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98ac2e4dbca1b9fadf12cef76d911d752cca276957b88da716ab003bb742652c
MD5 8b448aba0844a654fdd6d63a78a99a25
BLAKE2b-256 98e274e619be1e7c1d89cd89213fabf0b9e5527ae90fda6259ad6bd74af74af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c8b8253b61b6bd42928a9c35fc77fecf321cd42b3a81a03b20c47da5258c3dd
MD5 3d2067a8c18001c6a8ec77df661db3f5
BLAKE2b-256 2e6c09ca97e4052a37f74d33f1008c44afcf45a345bde4a97fa7befd4ff8165c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 53a7c30f456d2dfc91501d65dfc42002bc20a725d9cff415b2cde746b197f263
MD5 39d225737e56a73ee36a3c678921121c
BLAKE2b-256 605722bb8e4e545abd3eaae4ab9498695f93822978032aaeb834b5d2dc332474

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7837503c26dfe805f76286468c70d664cbfb966042edfa18665e98fd275a5c1
MD5 6c7df9b14b65bd2f5568129c9a32087d
BLAKE2b-256 74c59c60b8ad610775e4c568b7559f527c8ec8fa8a2969059695276a50e9a552

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 82192b9003cf88142d06ca02d359126cb80f15b22df01e78d4d7d9ebae945f6e
MD5 8304b8fe13ae1734b112a4ebbad65446
BLAKE2b-256 1be8343ff0c528a2131def86b63e4430263655fa17e63359952cd352c35da198

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 125c93f36c248b2eec0af98ab2f848155dbd4b63bfde4165e9d1e40d7e4c81d1
MD5 a1264cc24971023e063b1fbb17118550
BLAKE2b-256 9015901108eef3e6fd7d69f0caf50e721101e4ceb029a7b0f401c2a8d505372d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 122f3f7db719596d43b41443725d4c1bf8521bdb3ffe3fc0b6cd780bed184447
MD5 ae088c5af3f46a6956144454cfa988f2
BLAKE2b-256 e7880622e06c01b3a3208d9257b67e85c3980ba7bdfd4f7d396ce388d39da6b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4c4f9dc372bd1461c9ad1a78451f89ae2898235c7742f676c7912ef15d59892
MD5 b91c0580d5875a2ffd10d12b96439ed5
BLAKE2b-256 367200f0eaa1be4235d42ce402051b2f9904b5b741003958f540dd80e0ef38ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 913f66c35a77f0846b5128252470786cce551d9cf8be4e43c98503f8e0895741
MD5 6f1255ed1d2607ebbe874e2d042589d4
BLAKE2b-256 919260346784b566c48e8d3705109c50d6ce2feb453e655fd2077656e534027f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de4ad507f5ae4da80d1e34deeb7106307b4343a2fed8d52dd17802cca55a87b7
MD5 20ccbb08ed94ea5794e9627598cd748c
BLAKE2b-256 ca7a848aca00495c4f8df01be19c088bf297116fbf69cd7d880a3a667f902ba9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 748dea7ded3ce1c87b79e5b2c9c077f60e49ffbe5cc932494e0d7cd43ff9ad95
MD5 42930ee8df1a81a284179ff6f34fbd83
BLAKE2b-256 066e23c34e01da16880206339047162848054c0afcd30a07d996ba2f1d826626

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae88790ead8334f25db6ddebc9d4fa44fa4ed00dcc2f02b15d87abbe2143bef0
MD5 efce65706fdaf4c782fa9689e122a1cd
BLAKE2b-256 ebfd9f47b1e51e3f18130f17dc8f01c6e715be727acb675fe665d7d42746fa01

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315t-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 3441d49604e664e9d6acf2ffb09e3569c529dbbce40a8984da978140dbd80a61
MD5 2b50330491f9eb3df5c9966abcf639b0
BLAKE2b-256 420dfb0ce7875b8e328ce6cd1abd5e0c669d4536167a3ca27127cb147ec8810d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 308d525ce66dbba5a565a2a47058c6a26132f225e702798aaaf68427b0a1bda5
MD5 33c59a927bfbec0e0e5ae1b309520cd6
BLAKE2b-256 66fc8056ea5dc34651bffecd79a4828dfae2fc32a0ce147537765bef736f8d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 06aa96070eb90f1a6ecb80b5b1cdef87f5a1ac4adaa4d46275bf786b3c58eff4
MD5 450fc2e3274949a4aa6106387d3a46ef
BLAKE2b-256 c55492d3fc222c6ebdea65be15d1788a97125430a3232b2c46bc12e437814c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a9d8d25cbcabe00c1bb7e8ca9343da811b62a6a5df5eef3b21c291410d90c8f
MD5 c286d35b7a1c06e7c9cb682418e1bd5b
BLAKE2b-256 9a79bc586adb76e481283aeea5ccd0915283fa1e73cd46dca458e20310173013

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 459c9325cb9c9f1c68976586697f95441ecc2f176d035091dd4d4afa53d8bfb3
MD5 f948d886962b1a4abc094b0bc76b6959
BLAKE2b-256 3193d3638970970f1afd85a5bdb9754b8ffa5afc2458b63d4d753ad1dab103d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bede054a4c7353c55d5926b19015962aa2df0c93b2501298dcb895bbf55ff331
MD5 4039e87922533abfbdf6a4f9bf7d576e
BLAKE2b-256 0f400b928b789c36e01a7244287fb5c1722df741e5a66d02e9f4b144302d9520

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51b58eabfc02fe6f838be40e8cb6e44599ec95a732db7ed06f478f5dc10aaf56
MD5 4300917bc5196e73eda201f8c913943f
BLAKE2b-256 97eba12b8fe90cd7ce142190c6f81343ff36dd69650f7efad6e8e87bb72a45cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 609992a74c26a6f9af09b9bc1f1f631e8cb6c572be09c457a923a0ede49c666f
MD5 f832ca4b597dde3b8d14be35e4c6d2da
BLAKE2b-256 29595d328a32caa31586b98cf51d38671e16ba8d93fca8f34fa8dff042b23a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 442bcac51d00c11ec1a77b20b6822ec72ce0c150de7e5481b2756b4b726995ad
MD5 ebf61cbd5f436320e4454abd4cf27d46
BLAKE2b-256 6b3b7cc5b0c1aafebfcb851adf92d1081f5be7f88a5159c9bc814a705f525eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f41d4dc8edb0e5899cb41c0f3f0fdd6c57fbc3ed2258a6353231a2a8b7340a1
MD5 048e98859309a413aa81679e4f26a8bb
BLAKE2b-256 c743fbcda4f9a72c436f514bfca13ffe6a47b440481eaab10bde7e1cc356f453

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp315-cp315-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8bee7c494f2a30849732f2b093962abe00520e55992739f9941011afa3e4341e
MD5 7b47052d578bbcc5567283f76d02bd4d
BLAKE2b-256 72a9a8ab3ac7c94b7293df06c1a01b4cef1f48096164856202553ec95713d5fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ebb4374b46a7d3c342782c16a60d5db1b7c6edc06b00b004a5184c2ee75d9068
MD5 eb64b1e94695e05bc2def848b32094ca
BLAKE2b-256 49164e203cf2a3a2389394bb058e25438166d2f9cf1c811f029f30f3fdb57fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 435265c7e48f6fbc3e768190a9edfdfdb855c4572f0061fbd850c38a81122809
MD5 05dc1b187b7997cdafa6562e2c8976b4
BLAKE2b-256 92b36fb092abab2cf58c668e9219c06bb5816682ba5797146d13a6b906fdbc41

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 48a712b63c4c9b7b8a496b31f7f0e9f83e1398dc94e8be3cd0db32784c34e7c8
MD5 4a610d0868702eaf935e1da0b8a6a9b7
BLAKE2b-256 292b362fcadf4b484da3bd9c6361bf6eebd9af9043b04fc1d8cbdae7baa9c95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21b7bd8a02ec65455497389a85974c5168968c785e137445ecf3a1807d0c96f9
MD5 c1a3484358c5c3ee42c57d1abade3fb7
BLAKE2b-256 b23c83048695270b50f4af953318cfbdde9190f3fae953e6a5655c408fa6856f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25cc52fadc09f5994f3bc79def9d388758b9660048d91b97914c477d1b7017a9
MD5 6390d6a3426a97864d0600bb1812a220
BLAKE2b-256 d7b3b8989665354d14093ea783c1b044738ed83f0586dafb88749d013e59d16d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8649c99506906d17dc95899f4c699371c677109c93a715e997d05973654ca9ca
MD5 6113a4ce261c335f12f59f2a6c2d696f
BLAKE2b-256 8f4097c31282c3862822d84b4f897f043ad7d02df144844223c4ea1273ef5af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b568e5845f05b72a37706c5c0152e3b3c798f776fbb795076ff522692ba41bad
MD5 beb8415f351064bb76357a8576c29716
BLAKE2b-256 5b15cff00ac2243c42b54344216591f8c258881e4d02552ceebe763f3eda2e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d21d8755b00355ee42d83c045bdb26a70fe45d57517a1648525aa89a2cb875bf
MD5 94c93269678d8cfe99f38f6ffae513b4
BLAKE2b-256 352b1c61e5be929d31abcb39dacdaf23a0043d2f66d2c2d5070911d2ec6fa20a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 124c5167cb0b99ae3cc44dd340071ced3c8aedc15b9e09feb44fe274bbb625d1
MD5 fa0881dd55dd36d1d8941b653581312e
BLAKE2b-256 de7015a42a84c4a57c17676ec6dd9f6816def71ad252fbaa2ddbd0855fc0df22

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8900421e1dab527d3f5b16287c0e7ea6c5ef46280629cba967ef2a2cdc2044c
MD5 21b16db446c4972d5620626536b49730
BLAKE2b-256 e4835a142484678ca5cb81a05bd79a7d6458fe64d889b40756936b6887151879

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e32efbf1941ac0816e7492178ee29ee2aa91a28a6957d5a262d89c719c7dad24
MD5 23f363be8452260eb2d9ebb833cc7b6b
BLAKE2b-256 c672517482a84d60ccb76d2230944fa51c15c5054e5e4882932cdc0ed8bddaf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d66b3458055c4abf69db957b926e92c5d86f48ee36f2ac3bdc477e6904c256e6
MD5 d3c95d02d9ce5cddeeb187ad8d4ded31
BLAKE2b-256 3efaecee427a98244c158c3c6265c8222920c963737af207a4d721f93bca5a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 682c820c3f0529f4d31828ffb1ed03f564c52bffbe3ac3b874bc693f7d41bed6
MD5 441f9a9051fde4c828fdbaac6d2f4efe
BLAKE2b-256 a6b4a11bed9a0143b51de560148f933df7e7ab81a8770a60f855eff65cd4f4b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90cb9cb3b56e4369ca29a18d5b4be2892a4262732418d6c1e74bae0253666c30
MD5 445ab7e3b8e5474a47e30be36823952d
BLAKE2b-256 69d0efcce8eb923e6bf10c5a6a62a7f7c7b4400d4a2547dbcdec7b316d856c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0399176770f38fafd59c3be7c46d2a766d23f9123444488035c553298ae8c569
MD5 61923d0c68ed75d4246e839ec8ced466
BLAKE2b-256 c9a8266c00e4d41c2db9497449975ead9021aab51b25994c34698b4445c3c15c

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3226867c8b82b8ce0727ca68da066ce6333b8a3ca2af8bb018482adbd1a6d23d
MD5 48da933c18ae67c9594ea8265b6b6b65
BLAKE2b-256 a1a04ed1cbf61e3a82dae1d565eef3cc7b3b44fb7c78b2460a713d179468c149

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07c6bc08a6838757930648dc97c7585646c56c954e5b708a45017295096d35fd
MD5 7d981fcf7a8dee07269bf39e7953382a
BLAKE2b-256 f8162ff5074cae3d17eecc66374f63f3d2fdd9337b565c43d5f68138f06da13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56682d2eec531158c52acfc73b76a171971c2430b341ebcc3b667f2973fbc8d5
MD5 8d332d662024336c13aa14b21dc4bcbd
BLAKE2b-256 80c56cc89f8ed4aa465576868b7e969ec03137e0269474dc891cba3cb1010d68

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acbc0e7edade520e99a1a2d1bcd9d34fc3d6126fd78cc8059affa55a3f7e44be
MD5 d7eebad07ce63821258a0551fc61ee08
BLAKE2b-256 364c6398230c11b179c91cb31367fffe8b45e71bf7444a7f6924c180e02b471e

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6af0e0f634d5bbd548a5269d8c4c9256282f0cb5424fb26dc374beb3526724f1
MD5 1bd01dc308810626eb1be3852d1f9d4e
BLAKE2b-256 1cba1bb3ca3f7902e366bf65f15ba29f6c70fb96a4169d466a87f9b59af9ed47

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8545dac3b45c1e4187cf94808ec824ac885e15d23835bd0471852d6522be3ff9
MD5 6f05cf9298e641897fc2b678f009ebe4
BLAKE2b-256 6de7a15d96c22bff3db1657e3c1c07eb0e1f5bed7fc4f4c2c98bb03d5cb90784

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a00d2e435be0f87993f99dcf370d1baee8376a314e5d43c9e618010df53a7fc5
MD5 365e423eb823afeedf7833b9c30d4e29
BLAKE2b-256 86168c07d68647170fb8ce56bd2afb31783b0590404ec2cd6100ed7b94531575

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfb98bd8c88cbcbfdc5c6b315325c6ba38d2aa08235c2d47113e5b2a1b20c4bb
MD5 e8d8b82650b3dbe77d017481c3711daa
BLAKE2b-256 eb4461cdcedcc28c74b75449012d8f3969f2da3a3f0e97fcafbf0ffa3ce40dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e1a04d93691283ff5b949c3e9d7077dd330acfe4759f10645fd97d28ca5af5a
MD5 c894abcb0f74cb5c8bd5bca12e4b8b40
BLAKE2b-256 1e635e0e6351e1f303758f5cdf68041b0dd7675fa21c853973aa2c148f6c8502

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 700ad975cf4b59df7297fb161e01530ecdf9952f015c0c7961f52aa46bbd53a8
MD5 1c295eac003f17cc8302ab1c5dfaaa90
BLAKE2b-256 425afd407d60a4f1b0fc4d21101023fc9a220aad62b18f593b3ec8be0be36dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff998d95ab70e2f09a04923a83312da097d5ec97330f6ed958e2c9e2878738b7
MD5 e2f32a8315f7ef593e9cc71f5056fd66
BLAKE2b-256 8bccdcced8699d932d0e61292c7b353beaf65a064258eefb4d09d8f1e5e39830

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 943c95f739acc0b56be81ef10ab0f8556c8d4e72a8e62771260c5512f0037be8
MD5 c13b6143207375cb1616a9ccf427d82a
BLAKE2b-256 200aa76ff3ffb75e47c6833c61e76a3d0606b56a87457b1f386e2eb128984004

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91cb5761a7029552a09d095b8c37d3ab46247f64bbc6d5205c467eb8f194f50d
MD5 e13f9c8c7f62f6926d16744da1fbd888
BLAKE2b-256 9cc62b15be7dbdd8f215bab7e28e7aee06cce88e7aaf378dcb9ab1e488ee424d

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f6e3c96722e49eff05b66ceca8eb10cf258791116f0f338c889d87846197639
MD5 61f24f7418939190853e7ae074cd12be
BLAKE2b-256 a2a8c5d7b6c45977dfe945fddb8afa5ba97d3d6934954649ab0c1b069f970a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a49a323f1468d7ced9c0647ad87f458ad28cd62d560b790cd033d87450e982a9
MD5 3cde2d7ea215b2155970b13d78845f23
BLAKE2b-256 a11a8fbf08fd25db1f6505a6ddc92b539f1dd06fd6501f92052a4a2e11111011

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a3cf8967b308dc91bc1aee7204abafbdef73e9a974c261c85e1127687cd4df63
MD5 e0c571846631faf53597515ea014b3cf
BLAKE2b-256 16cabd30879ba835a1792065a63b40b8e24051e6904f3dc62b802edfbb5b039a

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5891e157420cd7f61ccd1fc85c6b9fa892697c882bff41d6c4222b015e1287ee
MD5 1159fe6e18651f13a08dca9fde040f3a
BLAKE2b-256 9db8988e2ff4bbdfca2f1482b9ab83714765e1365b4e8b992e15e15fb1cfd5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 43f2cc58acc30de6bb0a660d43fa68ee842db53493757d4d372d27f0bbd48061
MD5 4ec13fc2f9621c755b41c272a6952c95
BLAKE2b-256 ecfe438edca3bcdc301d1e4c48f6456ba3e60736786dee1e0e412c647c7ae692

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba9bdfadda872f93790a334ba68ed254877e247fdb5c184109e8ef64bf31a02f
MD5 cfca758b7eff7e73a74a0d926b07a69e
BLAKE2b-256 e4aed3bf4f70ba5afa15710c5fc8da97ae347827711b74ad0fac801b60223a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2eb33271d57903cc61dc313a181280ddd7490977535199326238e5b6c9d16a7f
MD5 49aa0189f5f69c48578ba8c938c39150
BLAKE2b-256 20efaf5ec7d701960f94a277bdab8965fd611e48d2670a29f32f3abf5f7b97d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b43cc26f4d0d4a51c72f5d8ec8ef76bb7d7c243ee829b93db2d8eb9dd6ba1965
MD5 a3567158ee446dad72312eee454ce49a
BLAKE2b-256 033a7902e5b5afd508df81a9bb635e6a91b88a7f36e1a6ce0ae891fd2d88cec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e35ecff1283a2ce0f53d16384c2a281c7e38ecf2ac3bbd7885a09dbc9b78728c
MD5 41a7a4406e27f1428d1201fc3c4bb8b8
BLAKE2b-256 9c9df8127e445d461fb8e003789578615eff6e93311dac4a833ed176b4bbd708

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 664cdf1f398ba5f2942f91ca8b78eecefb1d356fcd7a81070096356cd1852cb5
MD5 9b011d1373e39ae7a3be1050870f2845
BLAKE2b-256 2f0896f5b1d96e096dbcd20b45d89aae76df4daf8b6fa4dc2543f0e2dd55d3c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a5390af2ac05f6835c5d53364dac3c39f4ac5c9e85531fb051dbb004b238c0f
MD5 b7525379f9678769be7851cc6f35565c
BLAKE2b-256 dbe67c75d84af10761f9dc8e2514fe20a3b1895c46be1e7ceb9162197270c1e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de2d1dbc4af1bbc991615d1f337591f1f74ff5face92e23269626cdf95da4f8b
MD5 5ade5ab0e767cc60f3c22d3615619a6a
BLAKE2b-256 ba7aeecab1aec2876a95056f2da6ec8833581e222751c87343c7e583d5a4e4c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b761412ad8b752a844eb5e05f11da190b93a83fdb88fb3bf211b7d55eecc9f75
MD5 66930641a6c8a14ea92d14892f8515ad
BLAKE2b-256 e7c50291e5536f72f5b8dcfb15f2c16657fb31de62bb1a516d3cd239665477f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0e8968e8bee406a965a1293f3d753b2aec23366faf568e56eefdc271cb67324b
MD5 5aa87a002023ed6719d21702b5040d75
BLAKE2b-256 ef867313a9ee74e3c876ffbbeaac218fec126889ec096fab91fff7f0c640ec71

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 72dcadb522fd1fc345d404e6d0f0e4c563bd64edf1c393f56b9230231daa8b81
MD5 2cad9802f372fdd342918091f7959cf8
BLAKE2b-256 f4f1032c089a88b7981353fcfdefeea2048b221971af53c537d13f092d824ee6

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5f6cc86ec521d29c006900366430d98f7e862aa0b257c42af07b536585f495b
MD5 6c6a7f9fb1331a087d7d038e9e1d1670
BLAKE2b-256 b8ba68d137d5004834d5c2766c31150396ec4cec90155c36caef430f0bba7c8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1c90ac9f35b362f8b9819658a262d879ea727bbfa8c426c1125320cc2fd9bcc
MD5 2ab65e842e2a6ba7255e3cbb35d18568
BLAKE2b-256 08e5944fa134c93782fee7645d3a93f5e144fefb6464d7331bd28034d0aeffd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c57559a114461daaaf63e2d9c21146afc2cf1f65f44ef77308a7e40cc313b8
MD5 ceca78fec02f2d9ab42bf40a92fb6b3e
BLAKE2b-256 b82cc4382ee2318f2b2f7da8eea467214ee4d31230107de3bf0187fdf1ec7ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e07fda51e7d70b64328bd5a2edbf463b5061530fa43a87358b1def7d159ea631
MD5 5716231152e6824c3c06946641d004b1
BLAKE2b-256 e3587dfc7c6405fa11d688c5216176ea383475840509a787654f542346721447

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30040556a926593eebc90153e87fab275fd887f69d02f79a2260274540211239
MD5 bd476bf2f2183c7bf2401aafde18d04c
BLAKE2b-256 98d7f924b25cbf80d0900cf458d7a99d14a0c89ecadb417998592430e80befb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfe8cd389e0c3ef0a3a13b6c920ec0c27a5ee5a9c1afacb917d2ba59fa277251
MD5 f3f80686d36545e21c45db7a190d18dd
BLAKE2b-256 60430b117a2dccc7a3bb8e6ee6cc685274a53f2020ce1f87704665cdbf4f3365

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7547abec36156119d79cb63767afeaaefab33c825025910a16b57c69472a91c8
MD5 f1e452e95190086a3b8637443a59a6dd
BLAKE2b-256 ec5a2a8c667bc049c3274562b97e0815f8a6a3d7e517eef5ef45640fdd5ad82f

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9bf221e63c8d2f3b780f48bcb3fb7b33aac17a48911b8f126fd37d52fcf68901
MD5 2fa5b923efb729745e3e0aaa2762741d
BLAKE2b-256 b14b38316a0a82f6bccac2600cade0f6d555aebe239560169e8ddfc965214fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 87d513b08a7fc5305f6b1a554aa814cb508ccf5248750afb3e230b4b8cbfd021
MD5 a2d20163808575f8a61e6c39a568055f
BLAKE2b-256 a3378c451fbb5d45cde69bcef87c714d6cfe8d6a04fdbefba6c54450452d2749

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-musllinux_1_1_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 711bb665b7d7187813d56a8e6d61326418958938d020002fc8b0aff3fc32b986
MD5 1a10a5bcae47c1b63f4659a103d22ae1
BLAKE2b-256 fbcdeac3a86638ff5a16f13896544e9778701ae0ca4c4fe64e6a81014b0a1108

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 477e2796710421ebdde5a190eed924df6538675a45bd2bf15bcecfe072c275fd
MD5 21ae3a9fe96681bac857541e0d100c93
BLAKE2b-256 dcdc2c5c2ccf5174af9694225296d4d8987a7e0563ddf73fdf2daf4803184925

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 407633b6e21715e0faf948baa592be93da92af1275e25f5e35077b57a9deecb1
MD5 14bcf171d1153def97cfee9171dc21ec
BLAKE2b-256 5af5259d5c60478f2a14bf4f349a3e7e80f568d7d394b400228bb87c155a1ad9

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01e61daedd265a412cd6f2df2196226e19e2694e9fbf24d7bfde66b6c0feaf5d
MD5 8b9eeb64b8fec691f5b3f8db26bf5759
BLAKE2b-256 dfdbb8d0434bbd07914bae0161754b9e09392e35f0a504f42d1407559c397834

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 376e3ac0ff4fe64bceca68f1a8ea8c5dacca11b8e0f74740dc48a0c03d3c6dcd
MD5 5465a0d0a35fd6f5aa8187bf0d68a09a
BLAKE2b-256 c879816a66916040a7473e85df172ce4c0b4c4c174a5532a26bb40db861051c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b5987e5d8096e952daedd2a1d095d011959f1f4d079eacd08daa3a028899220
MD5 c26736d22dadd2c247c59fdbd3a12d11
BLAKE2b-256 bcd66e642045ebcd474b89134743ac8f5ec5ee3a0eefbb0baa31e41ea9a740f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for httpunk-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on gi0baro/httpunk

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

File details

Details for the file httpunk-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for httpunk-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e5adf2d5ee8eb060397ae122b30da1560b25d2fb229c7b21fea24f458e0165b
MD5 dfdb62983501c7f6e0eff4f3a6ca82dd
BLAKE2b-256 7890f0ed4d17eba0b93654f68ccdf37cc85f9b95090114e1af8980262e3a2b08

See more details on using hashes here.

Provenance

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

Publisher: release.yml on gi0baro/httpunk

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page