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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (432.8 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (752.9 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (808.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (516.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

httpunk-0.1.0-cp315-cp315t-win_amd64.whl (424.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.0-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.0-cp315-cp315t-musllinux_1_1_armv7l.whl (796.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.0-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.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (511.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp315-cp315t-macosx_11_0_arm64.whl (481.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.1.0-cp315-cp315t-macosx_10_12_x86_64.whl (509.1 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

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

Uploaded CPython 3.15Windows x86-64

httpunk-0.1.0-cp315-cp315-musllinux_1_1_x86_64.whl (747.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.1.0-cp315-cp315-musllinux_1_1_aarch64.whl (691.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

httpunk-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.1.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (514.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.15macOS 11.0+ ARM64

httpunk-0.1.0-cp315-cp315-macosx_10_12_x86_64.whl (511.6 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.0-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.0-cp314-cp314t-musllinux_1_1_armv7l.whl (795.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (511.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (509.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.0-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.0-cp314-cp314-musllinux_1_1_armv7l.whl (798.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl (691.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.0-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.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (514.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (483.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

httpunk-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (511.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.0-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.0-cp313-cp313-musllinux_1_1_armv7l.whl (798.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (484.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (512.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.0-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.0-cp312-cp312-musllinux_1_1_armv7l.whl (798.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (484.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (512.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.0-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.0-cp311-cp311-musllinux_1_1_armv7l.whl (803.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (694.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (488.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

httpunk-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (511.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.0-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.0-cp310-cp310-musllinux_1_1_armv7l.whl (803.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (527.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (488.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

httpunk-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (512.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.1.0.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.0.tar.gz
Algorithm Hash digest
SHA256 ffb1ec48c1b13e58aeb7622ab387d0a6f6ed4619789019716bbe97ab10efad3a
MD5 7f73fa7480d13d2aeeabec2891545f7e
BLAKE2b-256 da9fa42f79a9bceed6efdef37fcce36c8d962641167d6903a0f747e9525916f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af377645bde21c59f66c454d79b02241756b46bc7972f95e9fded7b279c76096
MD5 895cd20384744e48f472b1ba2688089d
BLAKE2b-256 bfd148c149685fc1b6bf05c00d577b6d8413ab5bc971252660cc6ec11b70cbcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c4c73b4b03914eb9a2b85f763551383c326dc188cfa7b26ade74918958511cf
MD5 6767b0cf15b53f1bc218b29ddcb003dc
BLAKE2b-256 31c3cc01e6bd00329178d98d63387e938b6cde901d5bf4e9ce8820d2e9a36aca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3861f36f9075a801bc42439f41ab0bb474e511fc33da1f9f5e1a92564668d644
MD5 d60f639474f7b8f95045d25d2a96e9e6
BLAKE2b-256 7ba857db78328eab628a8b91b378f77a0e3cc7af16a467f8f3aea102b41b4b61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e47414531b84d10b79cfd1dc1a8110026e49a5d40b7cb14e9cad202083cf86cf
MD5 5e4aec530d7a03507a299a5e4fd3459e
BLAKE2b-256 4c77466348392160a50073f75509b9ce1b090f571659fceb7f72079806cc0718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 377bacf70c5fe0fa25896564facab2c4483f137b66a54733b64d0733ac1f4c42
MD5 d52235881042ac497d6d63993d3ebc8e
BLAKE2b-256 3d54d9c5cf9490a86b9b71c19653251d2d12306c1a225e8b57ad960a96be9469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd204cfab52d06604911ee75f8dd20aa270e9bd7db3920e652b4182e7d1468df
MD5 8fc4fa2cda6b3b0a36cf42b26385a58f
BLAKE2b-256 c615bd74ef8f27f6e8e90aae1f68d92ff72e88d2d78f3e7408cb140c894f9ff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2ceac38dd1db6c6f392608f4dc69ad3c70fd63b731bc79bb4797441165947e7
MD5 b5b78f6a87b29ee221ed45ba64a456c4
BLAKE2b-256 062d37c4733990938a386694ebfef18fb121733cf5aa67403458ea55c9427b79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1dbb9c6c1bbca3ee88cc2cb917753665f9336423f5d0b39bfd6d9dc1b67f31b
MD5 d2d1246cd6803fc1a763d609dac6adaf
BLAKE2b-256 f03939c95e292d271bacc06b2babeee244e1efe2da19ac978efbdee245036b2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b99c82453bda36c3b0c7b224cdb75db7bf4726f550543b3f6ddef6a210d55acc
MD5 6c81364e38f4997a8e6a7884d2ff798d
BLAKE2b-256 c6320ee8c9289ec2b204ba1b4b16112f09e795928ccd51641648423b43cc5fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f57c231cbcfa4451bbf1de1682c27840c37ceed01b68dd0a29c7eb9fc9e376f0
MD5 6f990c0ff04370559c4c05af9721641b
BLAKE2b-256 310db999ed229904e8ebaf54b1cc56e84807fffcdffaa896721a3649ee4de951

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 424.9 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.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 c3ec3d33921f5f9a9eff669d9305fcad6141b2f3c59df4848eb6008a57c02667
MD5 2a789c989ea06e1716bef5536c2e8cba
BLAKE2b-256 90998cf9169f366962f80e403851dd66013ad8a46d951ef992b2f9dfdd0dcd69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3da7ea5e365c288ac4bd2eaeff256052b736254413350f4d666ae3abe9e8930d
MD5 89c2516453e2f89b2fb5c6727abda5ce
BLAKE2b-256 87badc1213b7815a7c6ebb640d83215715137e0d55d7663cf07f7d6d964dd596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 da34cb4330e8fba19ad95fae2e7e5202c28be1db03c16a763ab60d9ad46f818c
MD5 28d7a4cb41e79b75a6ea6d1449a83aa6
BLAKE2b-256 774c33b95e93f2e8b41131e59ef4a42cea8a04adb4980cc48131047cf927cb12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24069e0d276c5d4c1113e6bba7b21e1599501dfb36c9d4f256ce09d2cb7e2426
MD5 9f0bbf0d9d3c4360fa5a0259c1b4b874
BLAKE2b-256 aca322a67cdac251234d41b128af3884a35e2c6660f0b6c80fbf19565ac95219

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2892704ac9f6a1d33ec9770313fa137abd3bd90c98f95c1c0c3ed07a24bc694
MD5 fd90cc92681370ab850196a620c4a891
BLAKE2b-256 f3d975ce4695a9d0c7ed0d87fb8efc12ac5c5b51fb3ced663f736df8bd9e3cd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67ea90d11b14b69029269161b6bf812694ad71cb40aadd32950afe3b5d507ded
MD5 6186f00b025464890163d621926c9c1a
BLAKE2b-256 db7f5382c655962f987ea5de1e2b4b6f1704978c7aa349d1844fbc5edb8a1f10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 515e4a11a3957506e8fb9dbd97380c4396c2b87e19f7bb7a8b06068e38678389
MD5 03fdbd05722b1c3ce5d903401a83e3ac
BLAKE2b-256 cd0bf471c7c1b471625874109d2f7e392433ed345f162415f5b70b06a8842d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c59c298ba31047bbbbfb77623b433a3c1a4763612881ea962bc4dc364410e45
MD5 c9441e1fd5f55fae2003d6679f35555f
BLAKE2b-256 295bbf2b9a6e42e5efdc5c5680c9978c3b5bfa9e140423955d1260d5f096634a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a493f71b246b5920af93fe24a0ee0a51f3d0424046d0e13ca43d22a40f459a9
MD5 c9756aecc3dc95d80d110739726b89dd
BLAKE2b-256 1d82ecb69d10475e56cff65f93939b49753bcd54e191316f76a6d9c7b9bd3a22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 baa76473ab56abf1c496649565c5a86c031223f918a8e658b35bcf99e84fa859
MD5 a6b0108679cc32cef5a5e8fe36fc7526
BLAKE2b-256 1b0be855e88501eb21f0db888b919f13c22ba828597d96c51dea1092cb65009e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 d7d596770f2fa60cfffe278e4999320c3d010420a0839a8e6c8ac9bf55706354
MD5 0f223085584b42c69bbb15715472c030
BLAKE2b-256 83c7f90d28308daff8be824afd0fe0a7a7fd3b1beaf597a135adb0909113bdd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60d99aabefaca7aec09511f87127e179d54099ba51276cbd04c3821851a664b3
MD5 04bdea503b37311054225e393a98cc94
BLAKE2b-256 53b5cbe2f3ff26a03cf06641e491822c024a3a26c32a1dcb0ecd3e7a22247e1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4d2ca052c99bff6c81420465487c8454af0ea7b655c0bce7101328222370f000
MD5 c4a0e5675cea7a1e9da67d84f73e69d3
BLAKE2b-256 82ebe91e6467c0debf78405ce0e18e5e25710bd4a8872e51901a2a31df3ae625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9c0b394540923aecc4064526f1cb87614161ee1634cccaf5d72703e0879d18a3
MD5 738e4377b3623e95d6c37ac5297dd5a4
BLAKE2b-256 ea5e129c365d7d336ce926ac40ba55f7b0a5e3c029c6af552e00bd418a8f0529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45314fd69aaeccd46de31e0c2f5e9581197462e8bf2b44a6b6865d8cdfe64cb8
MD5 d960cdb98a0dbb9b01c68a1e42548f8e
BLAKE2b-256 448072a56972eb3a9a6cb1940765eafc7adeb368889b83441dadb09cc2f50aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf5aa03ce14404318941875f046206751c167ef137923758b2bfb6dfaf6ee639
MD5 b8c86442933c106329cb8d7937e9d896
BLAKE2b-256 74d300e728a435b12d4962a96c0cfabd0f339ff39ad61e17c617f459a3ed45a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6f5fbac4210e077f25f84a7b08da206883bf9ad2677bdbd3bc7042fb178f700
MD5 2f44b0c0e6aee045a62ff953e7e936e3
BLAKE2b-256 8136db3749a71ac854f3bd62c7e2ca2bcf09b5b787c1931b1d83cf52cd558b41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b80d94033b8c3632e2c28c3e9674957dd35de75b7862a0e1ae069cefe9150518
MD5 7f2914ebff4d5a4395385ab9e3dc0be9
BLAKE2b-256 159f652bf4b4c7d84e789c093fe2f5328e8affc29d29e2ae04b6a0ee8719c9bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e647aa917446e158a449e1033e301f40ad172a2e265a0f86d55d51177cfc6a14
MD5 b7a09bada3d3d113bb18267a98a574cf
BLAKE2b-256 4d1143da50ac0575aff8fdd7e9b9262b7507c654b481a98d23e387080b9e9571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 516432317b21c602170feacae24babcdb1d957abd3e16a59258a1b47fbecbbde
MD5 3086788165b9f5ae0b0afff6bf53f634
BLAKE2b-256 a368a3eb1b39d7504edeff923f2d452eb65d22da3b0e9246e9f1e1561a68e8ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ab934a8499dc139492542fd52bcee42b7d0de2ecd2b7bf1687e5243fd82a025c
MD5 1b758f0b98cb6e981fd89dad6e798792
BLAKE2b-256 26a79faf2886a97abb57ba727008c0997460432a6a3f29dee9266e62811afac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fdc49d45de6b9b4496670e9f985f5d961efa0ff9d3b5ea52fe679763ae0b7cf8
MD5 c36dd8ff61ca60e7f61651ef4a9d9112
BLAKE2b-256 5f48dad31e10a37da0685e1f33975df1ebdc27e7d14da86ef9a878a143a82fe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a8fae6a9e0bd99c47e5058018008b09bc9813f505195eb8139e4da014dd77a2f
MD5 cf8fe96bc63a3efcd16714c15409e66b
BLAKE2b-256 ec09a757e3faa7159f3e248039b9227258d1a3fa7428b76cdf28e967493695df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b54f4ab521b0fb64273da96f925a6aef89d1500d3e028d59b5e92ba6b1cdac2a
MD5 831f83e4c0da969cd7b052317cc4bc2b
BLAKE2b-256 c84e06d23c78f0c02202db431072f66a4a88ed5c9be59291ba2e642eb77ab8c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d65826667d4b8be247949b2e22a59240ddff2d96d00eaf9d7429c9ba1823ed5
MD5 38769d4f295b483c94f0ae7c37cb267e
BLAKE2b-256 51a675923e7eaabf724d6b3ab8379503e7be051000bb4e0d3d6082840962f3ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f9246436a983982b6eb182de1e0500a5a14791b2b91c555b954914d54f32452
MD5 ae7863df81a52200ed6915570d71d22b
BLAKE2b-256 663983199bae63c02139183b70dd5c616ace887993a76009ea7a8730e755068d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 218e0e2591ee317329efaa24f4fb17f5a48539e9d8bdecdbb4e4c3370e3a2b1a
MD5 c42f442b766fb5933a67e32e5c8590b8
BLAKE2b-256 abb1fe3b637c73936c70a6d5c754f29bb6ef8cd7365475e34997fabd57d6c046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8818a131b20cb47479f14cefe181523658ac59a26ff4012655d1e2e64db1a29
MD5 16287c2d3b1fb52c5a5910d12effd8e9
BLAKE2b-256 60262afcb8ded6b9c5001c606b8e6b45a51f65f8f857c0c4294ecd9d536189b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc133fe829a1db3211e7fc3474cdbed28d2afbc0ef8cb531f12432ccf9f62ad5
MD5 7bf007c2de02fc2fa1ded76fca1e5373
BLAKE2b-256 dc4fea7a835bf9ed12d03b29833fbf37337b503bd7e4f142814b8e74d3c65851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 541d4581bc562de7f1ae3900791af50458bb8b603edd585733896c6c66f9834a
MD5 3358ad179ae43937bd187394787b6c98
BLAKE2b-256 77001d17769ac8cc863468dca5bbdd24b9aee8eb7edb2370cae1c99e57c80f36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b54ef0923b10a3e71d87f14c3601a0ff2d4e05f5d26127b38ac079ed6ff61913
MD5 9913839666d51ddc417b4deab26c83bc
BLAKE2b-256 951ce2ff200da4d294c88ad48ff3a00ba60039c797cb829a48733cb753c02032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c2449a915e6363a9f26dadc889a6f778782b64f3358a91d16aaf15180743105
MD5 0f43f27d15e100554a22c3ee33cab116
BLAKE2b-256 8b16287422900dca1affee4c88c505de03805dce73766f0c349288108e574823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 728a7bbb281fc0600d49411be60391a62c5a3fd2fcc208d4c01ef9ca8caba5b6
MD5 b9e2ddfa10353abb423ea9fd6a39222b
BLAKE2b-256 bc078e8900ebf5a979f594609ca49ff89143ce93042db3775ceba9a241447264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 facb2e4b16b76d09505f25583933a2bd2f137172073df82d15310728d86286d7
MD5 5b0f5ed1178027708c81cdfef69082eb
BLAKE2b-256 074996da048a8cd27d85cdb96b4fd6114875c5a425411d265bda7cad8ef68821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4cbc0c3346b32688f7f0df70ea829cc03a3b99e82b7d0bbe4ee4035a78b1919
MD5 be1dbb268cbdb498282b480e392dfefd
BLAKE2b-256 b2b5641c3e80a57dfdb625ce1a028f794451ac16956f851da912b49dfa6ad6b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ff7f62dab1d63fc7c930eac9feeb22a85e8719874b67e77c48341bf6f624234
MD5 3ac39fe6123eead8437685e2a64dba93
BLAKE2b-256 35dcb43f58cd93a28bd6cae155c1176b0322b2b3d0b6215ba504bdc59ee06805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc4793d52366866dc749e26c9a01b6fcc241b6b3ea24b91d6168d1b30b2559f3
MD5 886d62471de5024b489601eebc2c4cc5
BLAKE2b-256 150e030a877494251c1f0383967c2996a4dac511412e650d6efae234d677c2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d8407226c9269cd7608f6420d87ff9b79340587eafae818a12304e69ce47e92
MD5 1ec39a68b8204fc11e88524b0fadf7e0
BLAKE2b-256 00a4c60c2bb89860b1c306f6f0cad7a38b694c57aaadde67dd71dc96ef7c0fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fea1c8f7aba6e57264f0ff968b6148ccb7516afe7ad9a721771ecb8118563a4
MD5 0da23160dfe9a05fe2591ab29c13d017
BLAKE2b-256 97b19958accf4f76261c23fdeea35515c36e79bd9d800bf1f23a869060d185b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cdfbc7a1e78d1ad4f5c782bc75990d74597197251b54402087d220025e62254
MD5 cac837f0766f4f5862c484af5387562e
BLAKE2b-256 c9b9057121ebb92e80c14b88a54a871061ec862e33b2677b01da7823e6057d3d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e9183a2a5f5b9e2a018eee6b304fc3155eba07a0aa7072b0e2cfeeff99b1d91
MD5 f6fde41c7e071f3ba2207c1b0e85f32d
BLAKE2b-256 b277f0f70ab985192f3ffd65eb8ffd73b07d46783a13827ad37d026aaaccee6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 888fc850a75e37025237325a5e8c9621635261312db82e272c372413853311b1
MD5 e9218bbd8c11d1fdf2ce22b29d4828a8
BLAKE2b-256 1c421672336d81ea9a972f3488678135cd3255db059d8256bff2caf2cda083b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4ac0d4590bd0021ee650f8ba488c34d70f1fb65884a8131dc9e62bbfa382ff28
MD5 3d26a5ea81b74383c1989ae270a0e50d
BLAKE2b-256 dc37a4c1fbe4f2714054e18e24f710d68255e9734cc13a5587e538ff42614690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0731f68e4fa9e43b1a11ed6dd5575f375aef37d1889c1fb5cccd545e51eba96c
MD5 c5bca2969d3fc355465c0be8a6db0374
BLAKE2b-256 d3f943cc10d98dfe166295fcef24b7326fd5b668855688ae81868929c4b17647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f6c2166e7a19ac6923b812f6c5be776f3fcc9adafb6875e415c51879405c8a9
MD5 456f787025da2b8522d95ecf89192ae1
BLAKE2b-256 65cea06176654648096f97ab2a2821a89e496a83d5800ca0f2a0a5335c90d63d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a71ea654f1d4442b7dd998a58170b6419985fc42120fe3533ff212a15dcfb616
MD5 c26d61df5642ef85b04f2aea620f00a6
BLAKE2b-256 2938c47aae8d75f13633549c3e6cfe17ba37d0d167e3f42c8a11f446ed287830

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34ab76a6068ecdfee0bb453f0ca3388ff2d637e522cb9e95fd7e7e3358d5b3cb
MD5 bca8b02f02b797a54ba57ae5d1db7c8f
BLAKE2b-256 741e2425d5afbd6b256eb5d3540076c2c608bffa208889a41e57e700850692d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 133c094586358da00205d5bad582e10a471fa3543eda9aa813b08f1ec496fb00
MD5 d2ab82533a17655ef5dd82afdc0d735c
BLAKE2b-256 e4fbf1abdb75eda4c101660ae429de31b821708b7bff5f5da2cbed1b38f0799a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990abb821023b0fe7f42a0ca1bc8036ad3bb586739a4a1277805294d01bf25bc
MD5 2bdc1250d42963e90f699d6b41af3393
BLAKE2b-256 b29693ece4d1002bd8e13c52e19f512ff0c708a04b5b751f03f81760944b602a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01677821503d76d0eefc671fae6db3728e116ba812c63bc7e9dbe4f28c41edd5
MD5 75a262cfe332c879eda97e6da9e6087a
BLAKE2b-256 2801dd10cffdd6728799f620acf4d23e33dbc3668b4f5a6b45f432648644d2cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d313e90981448db5b3fc686b82f0ededd97fe2e013d7c40a7128159a6f948bea
MD5 a8d1f516268180e4c18c3a2c17824676
BLAKE2b-256 e8bfd01cb497bc91140196ad26637de522d712bdb1d735388c09891149af88cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39a6bdd560152054bdabc58ab9edfeebc4278c9ed8a04c7cade7606dae47cf85
MD5 f17d04ec41e034552761ed979b82e577
BLAKE2b-256 884e86d7cd7e2d1f04d04387e044e83fdf11db4112d9b6acaf6007a312956bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 82fa0b4fc0324f3381eb180488cb685ba559d3d135e7de09d4545278125c2c13
MD5 80e099dc464472c9c569847d33207b88
BLAKE2b-256 93ae5e12e56e2f279ff6ee74a4893ac40ad2be4081574d548ec4774f296b18bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 33e4f4ad9456c0831ef4563c3007011bd2c59720dd27177ceb0b53711c87d70c
MD5 1aa63450179b00fedbd0f4443d5a2ba5
BLAKE2b-256 a55a17e62a392d1ee8427e1707742adcee57ecbcafbe615c4bb981e946ffb808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dff9098cc324f46871693c48e1cd1fc65587664ca6ab02ea4fd8a28ddf58c25
MD5 22beba8df66721eb1f3e4e3d3282bd3a
BLAKE2b-256 5cbdd14683a5c5b09e5c3f4a6e1b18230ac89afe58231858fdadedf76cc9dcd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26c1452c2fb84f4ca03e6b0418835ae9c1167c8a2ab9592b532dc65a78184ed5
MD5 de736178fa4f27c64c50a4046366e43f
BLAKE2b-256 4a484cb0fcda00452fa0b6ee3c2ea0c45505c46f736ecd876e4cfb1cff5baf7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20391100403b9a41bc1c6299490726feed6134dea6c08c3ba7ffa1f9e9d7529a
MD5 9b683438fdd29754c3be2cc23521b07a
BLAKE2b-256 29ceaf35fbff2eb7fe855ed324e4042efc54a9deab67db4df98b37479e3817c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb222791accf908ee3581f3b5c0d857db95e3bdb5859b4b22f0245968703edf9
MD5 cad0b52a8aa892c6624304a62aafc923
BLAKE2b-256 241536fc683898bed1cfba43bbd5ceda96f2e8fd88052c566b89f40e2faac821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec7abc1d1759647ca8552466d0a41d590551e12f086e30b8fe73f9235701cc55
MD5 c9496b02d330e34f968f7a01587cb7c3
BLAKE2b-256 fa34194cd16c5dcc3f9940a98630628b3537b8de13b93e79b7560b5da88f0523

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6abfdc358c11df6c2b87e06052e80501eb9d3cff1ddbc4b1ba255d7d868e72b
MD5 fad0e71ff437f8c90ade9cd7d93b0ceb
BLAKE2b-256 6adfe74985d3388d0411bcfb0dfd823ed99b4de099c69323c0b9ad480fbd7115

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02b55b8bfa9b8805d48fffb6d1d418e23957214ffa6dc9f95aab3c96d41b4c2b
MD5 ffef0e1dd8ce03e1f52567671341ae8d
BLAKE2b-256 d5a7aa6c7353d019cd8c131701c58995b4dfa554b3860bad875e70c98a5975b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd558b1044a15b14ce2e960f790af9eb38cabe2029056fc8bc9e837252853dbb
MD5 3a0514d7870c4d984ae9f66edd93d931
BLAKE2b-256 347566875eac79c38f5498cc5136dba9123a27923bca25656d0a92b65a212e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 69d8f6303bd7547a677b4798d2271fdef5292cd48afc0a66a25db7178553a9c5
MD5 0e3c71165ddf2d88fcee630da5374a20
BLAKE2b-256 6cff193574df0e077e17a3445e2d97aa92051ac890f86c5a589736a9a05b8dd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4b8df3177942b172e16dcd94e53fd2eb8c081415b29fbf9d571dd5b736408bdb
MD5 1986e31fbdcd7af2adc0b0966372d4ba
BLAKE2b-256 26af4183790ab81edcc881bbfc28f8e12f44868e2337b3f32c188ded69efddc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be8a33035c6692424acdaf157da82374e64f6b0d45f340c983c00da354fb8266
MD5 1d8b2f37063cf810f5d505b89245f90d
BLAKE2b-256 9eb46c9d962aa45999aed50dc0030f9dc0cbeb51e42d0dc552dbfc1fa5802932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8fb10aa0c77406795994845d5671564dddca2a26a3bd199232d543e9d2d8b3ac
MD5 a6b40a148798fbd987b20d66107a05cf
BLAKE2b-256 f0fb722aa1ccb5106884a847c9ff058d317003d603658ac5c701783eb8768d3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a23277bee44903b163e115bd1f3b1bda8816553dea4e5cbf15aba8bdd1aaec3
MD5 af2d4fc88f73c23d1b900a0f86cf377e
BLAKE2b-256 f24ebd42ea17fc4b964916affd426ec705428de035dcd15d58241a19679c9255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d969d94ce0e651a676ab7c0938cc1f1c2715ebcdf40b10ab84b988c97ec8e8ff
MD5 afe7a669e180b36cf0d3716186ab6fbb
BLAKE2b-256 ce6e2c49d924bec0bc8fb375c2ff04e94cdcfa97f87fd1f990446b7129a76819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2218e8feef3c622f9268c6e9bb2e7f2a5c4921d60ddfdc4626762d11108d0c0a
MD5 fc0927c4af76c6bb19c7bedb0fe39122
BLAKE2b-256 a83115f90ba5fc0231222356fa76686dd8f6911b2af2b11e449361959385d920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c80f5dfe54b33446a2f04a1e26ea27c54b839892f4648454dde87bd53cece0b
MD5 ce1145c1e33eacaeeeb4de6daab74f1d
BLAKE2b-256 18bb68ca4197547ec8d707db03c2ccec2f80687fcaa039fff228b1ca9c7e34c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f1c9b59024ae929f2ebd58789ca99dc96fe1cac5df1d2e8fcc433fd879739d6c
MD5 f6ef5f95fb7c1960b60505afaa1a06db
BLAKE2b-256 b6783163f4ff685aefe3b3103593b38aa248d0b36b753c20a3368bc23a256ba8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e397e08d3d614c0d63c91894803fbfcedd22b84dd4d0b207934cd2a84192649e
MD5 e3469d9d4888b1f66231c21fe09901c4
BLAKE2b-256 3f9d49b42b7caa874086c558b2973efa0b74475642c27b1b06a847d35f01069a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 86c7c140611d900b6c536042b68b291d6f0e071517bbeb99a586b21173cfee49
MD5 7134df26c10734155c53ea1a2cfde1dd
BLAKE2b-256 64c2c825ea0893db201ee191040c328296a89c08b96c4793904f236c1fb08914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7998812408b5b0c43db04573b8c9e02f6e22ed9c51593c2d449b4c7ec1ae7dd9
MD5 d1ea1ec74ae1d19a6f0270f706114aaf
BLAKE2b-256 28f4d783b15bc3fbe24f6b78ba8d65ee5931ca4821a755ef9caf9d5ce543c661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c51b36dac08919ba58cd3be54c7a0d58c00e7136fbed99a75634fab714617abe
MD5 be1c65edcc2b0207e9f4bf38850efe35
BLAKE2b-256 08ef1814f45789262953ed4b4c3941d1196d6b6adfacc4686557e4834e0e232c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 339a2543bd790a91ea91745966d323606b299ed24791b32655b0cda37eab8e94
MD5 5e81ed54e6e2f57d18130c409fdfbf64
BLAKE2b-256 8d52f115cbc029ffb3cc82a56d21c06034ef15773870ce264d366085db82c7a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d2f17d96b6dc2f2878a4ca1a49ce76496bf5f40dca281612d3f0d88509362f6
MD5 3508b70e4188bb30f685c246b3898191
BLAKE2b-256 23aee24a19b89f0bf51eacf3a55cb0f55448aa1e4f7b96fac0e5bb77d22a952e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a00d1390b337840fdd4a22a72fe2c0879ea47f684ec158bdb1c546d2bce20b51
MD5 a2092614c41f39c8688e2d751c067172
BLAKE2b-256 38fe20d1456263e9afb2f18983be29d562e21eb9e22c88ae4da6dafa1e038884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1517f7460fe148438eeb03efa807c12f53c6662400821d3f30bac344ee06a437
MD5 ceb9cff883a48d579e3555e3d6fdea32
BLAKE2b-256 30ae6c21b4d70e96a93e5ab38dab05d48d304e1f7417bab1d74508b80f507947

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a98e2ba37e4200ab758a1baea707e3a8ca5d1d6962f68a28c531c09c4b43fba
MD5 2d17eace69f388ae01fd5c59232a5395
BLAKE2b-256 c6aa65ff18a9674da4d23807f5ac82cb396857e1e53966ef5939a51e21e8b35b

See more details on using hashes here.

Provenance

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