Skip to main content

The Rust HTTP library for Python

Project description

httpunk

httpunk is a Rust-powered 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.

Note: httpunk is in an early, alpha stage. The API may change between releases.

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

The asyncio backend has no extra dependencies. The tonio backend pulls in tonio and is only installed automatically on free-threaded CPython 3.14+ on Unix systems.

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 server 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 — they mirror hyper-util's shapes.

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 (hyper-util's server::graceful::GracefulShutdown). 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 server classes so you can embed httpunk in any asyncio-based server. Just 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

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.0a1.tar.gz (282.1 kB view details)

Uploaded Source

Built Distributions

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

httpunk-0.1.0a1-pp311-pypy311_pp73-win_amd64.whl (431.7 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.0a1-cp315-cp315t-musllinux_1_1_x86_64.whl (744.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.0a1-cp315-cp315t-musllinux_1_1_armv7l.whl (795.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.0a1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.0a1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (555.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp315-cp315t-macosx_11_0_arm64.whl (479.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.12+ x86-64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.0a1-cp314-cp314t-musllinux_1_1_x86_64.whl (744.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.0a1-cp314-cp314t-musllinux_1_1_armv7l.whl (794.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (554.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp314-cp314t-macosx_11_0_arm64.whl (479.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.0a1-cp314-cp314-musllinux_1_1_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.0a1-cp314-cp314-musllinux_1_1_armv7l.whl (797.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.0a1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (533.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (557.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp314-cp314-macosx_11_0_arm64.whl (482.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.0a1-cp313-cp313-musllinux_1_1_x86_64.whl (749.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.0a1-cp313-cp313-musllinux_1_1_armv7l.whl (797.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (557.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl (482.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.0a1-cp312-cp312-musllinux_1_1_x86_64.whl (749.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.0a1-cp312-cp312-musllinux_1_1_armv7l.whl (797.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (557.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl (483.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.0a1-cp311-cp311-musllinux_1_1_x86_64.whl (748.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.0a1-cp311-cp311-musllinux_1_1_armv7l.whl (802.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (564.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl (486.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.0a1-cp310-cp310-musllinux_1_1_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (564.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.0a1-cp310-cp310-macosx_11_0_arm64.whl (487.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.1.0a1.tar.gz
  • Upload date:
  • Size: 282.1 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.0a1.tar.gz
Algorithm Hash digest
SHA256 d13630fd49d7881ea1c381fd9250b4ab48455bf570ab4614c588f84d47e3bd0e
MD5 59af38ae750901720b470c178c5446b9
BLAKE2b-256 ce526ef86767c4855dc5cbcd348357b0c8315f742cb646b3c9695e9ef46841c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 61af734d2bcb83872e9dd19c5d5160afba57d24672f08957768580ff59d8f253
MD5 b4bc6fdbc2d010618e180c39fabf8923
BLAKE2b-256 461a400eeae9bcb3ac5137de3ca8ee9216a6d58d3388f48fc4c8a5973f1a282c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1c74025d58f81b82352bd0747edf43408f70c8317d193fe7921a2570e1eeedf8
MD5 6cda2ec2874a4f5762bbe91a60c291f2
BLAKE2b-256 debea2e7f283754ec4b0d6c79af5e46987f8d7659d90d396df716353665a0182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b123462d9c01fbe9eebba7ec01134affb6303afbdce5b85524ffdbe1f0d48fd0
MD5 6b73d52a8dafafb5d1a55d75adcaa9eb
BLAKE2b-256 9907273fc12fd8ee844424f392f2a225dece24afa1d8542522c43cf7f534dcb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d4a093e6aacfb385e453d71ebed25b8a5efb9d1dd8b541dbb7a4f0806d4a8db1
MD5 91f453cece7e1b97534da67b2c9d34e6
BLAKE2b-256 64bba4b958d1d55983d30d91a57d6a009ff5c90ec30ede7e9c515a2004a65b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 034782c04e1103f54026cb1f04086f0629d00a23711442747351409018e28eeb
MD5 8be3346b965a57646b0e3ea50311179a
BLAKE2b-256 ec619a991c0970a388f216bdb36024aa08de20ca67c71762ae8951148be66e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42d694aef1ac8639b329d491b89e1c0c7a14b78ad5ae3c9353c192a33b9ebdc1
MD5 a57ebb56cdbb9262d557bd55733ff5bf
BLAKE2b-256 873848770453710b7904207ca6bd340eea78f3503f5b12ad36cbf2e579f85aeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94370b221bff5f85b0bdf0692d264990d2f266e71fb6d03e27a152c89fc52462
MD5 ae6a9953e27d563ebac6cc0d5579bcb6
BLAKE2b-256 f1ac246268d0e5c5651ccb1707f602866f95d95472c0cb5816fbf815b9dad771

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0017174bbf683d58f37874959b72b724f5e2c81f5c2ce80fbc1fed564be0b62
MD5 1d08d1f302d584ca0dce2058fafbd3d8
BLAKE2b-256 72670c9cc6d3c7c8bc101ca16dd68855ad1997a13179a1ce8cf6fcb60d01256f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d7f760240922de324a5f303d21989ad683c25ba97080170b2eed90ed16f5f2
MD5 b9a9e8e4071be6af58ca85ede7124e85
BLAKE2b-256 19a11d96d99156de5e367430d2d81e426d77a7e9baac28306e9525689d92aa1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ca0558f3b3f9d9fe72add1b48dcdeb4b6421d8f273dea7aa4b01d9e29146ebf
MD5 9384048011972017f8196262ca609346
BLAKE2b-256 0034c3dae865bd88b35c631023f74ac68bd7de769b6bbf629818c1c0028490b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 0fb0550318f70191d02eb83b825362e861857fa17a61ba4fa24a7fe607bd5fa0
MD5 a04c14009e31abcacf8f91ad7e36b147
BLAKE2b-256 47d34e3bb3e5ef272f73607284b8b80bcc6c05f5d01ad3468b2e516c411b1452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2594177efd38e0bbde703c8e47819ed12cc3c8900fd46b0cbed42cd4081beb81
MD5 a8a606384a8d7cdf49be88a1bbd956d5
BLAKE2b-256 169bb9f85e07fca09b9abb3da16c34362873d8958379caaa22e49426eb837ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9e0b3a998fa43e08d21678774793fd14ba12d094b5d4d19a8851fe995a6cdfcb
MD5 ad036ac171dcf92bdeea441d6b7577af
BLAKE2b-256 2ac7f37b44276f6e808f7707bf1246e3a5b85c9876e2384cf52c71b0b04015e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ac39b8b5d5d2d4dec1540bc540550ae6daa3446adb0e77b041b855a604aa6810
MD5 548ca70970f83de751aae9530e267a83
BLAKE2b-256 2647b8e242bc9e2176ed6c9fa1ef3a22d7c38e116050745ff109bcbeb1aac84d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8842abbc7480be6b496541b6a3fcdb172a8b6f1efb01b6d08710536698a6cb67
MD5 1a3012efd14cbcf57ce142903e6a83f5
BLAKE2b-256 2f18e46a41ff485196a89ae5e1ebedcb5e143d3cd15d101a7681021bdc4939a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b57827a5d6fff11ff56cb7a69fa1c7e03a2de393de4ea1539b46e67611561b8
MD5 38de547f4f9872b8011f43b13d642343
BLAKE2b-256 f0af1638d218ff97f4472127d109ec4d95dc9d32266fdfa46fff8bf8dae2e30c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48d345e273306c0d8953ea86a867779c0be735304a4298ea5943560cb6831631
MD5 9b1ec483d6bbc587ba8bed8987168fd7
BLAKE2b-256 2ccf44387e7a2fb61021c407e58ca9200db457722c8eb1b9ff82251e9298007c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cafd187a2455b3dcf30c3361246ef6ddff21c3e6b300217fffacf778544623df
MD5 604a9efc3bcbe89d0b01d8b7e493c8db
BLAKE2b-256 875494f66c75d3da1f9db405ac89c94a08dfb172a5a339e44ac88b34ef778a26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9367fc5a51130e6a74f5bb87616f92cafe84018a7e3b611459e5f89d62e6202
MD5 fd221b705ace8323971f6e6a49a76054
BLAKE2b-256 923d2e5b879a67d5786e3e032e710563aa0a932ef664f4c022699a3733950d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e32ec8b528ee3bd82055add7c636932f6c53535adbca0716ca6f594935831ce
MD5 bc1a8f7f2f3624d5c9fcb31db155b1df
BLAKE2b-256 8b28161c66f59e39e98456afa1006234a00cb1f32d5ffdedde514777457827fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 425.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.0a1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 0d1a1d9e41b0c03d85ad193c063abd34758f98686c29ba1f9e5b32f4aded72fd
MD5 268ce701fab776dbf36817b11aa5f1c2
BLAKE2b-256 626f07eddcde7a8242d97c04173a9e2d0ae1a4d23919c0284b72d95392d8bef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c9f67fd1dd2f10cc7548fd724c6161b4d97153f2691f2ce18e6753e6599ecd8
MD5 457f3948d96876bb5da09d501006fd36
BLAKE2b-256 12ff2dd5d918b6898dba238d05320cfeb2f1020673609d578e06565f78f8b314

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 16bdc3370850c29a374e68c0fe02443e20dbc0c363f6d660c957c26c7a592658
MD5 c0d22ea1a161588a816bea976406940f
BLAKE2b-256 8c6ae4ad6da2ca263fbc008a9f6c3c57d6b62d4d3cf815dccd072f43a4849727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e4cbc5b97a4364f395ca8c2e0a37022535d7e55c45a53f12a565ce03c84ccf4
MD5 32789e1699c0455472aee13027cc22d9
BLAKE2b-256 fd0f8d9d1f648319c207022b7b8ba87da62317d76a35feaff30df637c61ebb7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59a34615826f34bff7e883e91ea898c4ef548ffeecb119aa4b19d818acd2fe0b
MD5 749fb938e86fed2e878608192756c51b
BLAKE2b-256 18238e3211c213ed5a290e88994134b9346dc7a019328cc22f9c8de17fd290a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 371ded53340116261a37c0be4bb6a2957a470980dff8ddec4b34aafe7f1350f2
MD5 d1d836eb14b83e7d9899e2b4000590b4
BLAKE2b-256 99f579886972950694e39af8c32e712c8199e79644953b8b69042816c5dd7557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f7e8bc431e8ed0a90ed3902343a5d2f9f063c9b7174320c93f47115bdaaef90
MD5 0b9111c5b522daa0ce161c43699a62ac
BLAKE2b-256 4ffcd060831e2abe0a996ecacc886ceb254ecb261e99b3683d5582eed801fb11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74c4e8f920aa4db99a7f9f15d1ded8106ad38cf7beb93103d932423dc9b295d2
MD5 d5f02da3948198e9c74a27dc464aaa9b
BLAKE2b-256 28378613090732d8c5b3af669cdbbda8cedf501fe526e4dd132b55cd2832b350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b78c22b14d698127c8a87eeefa492b13530272e981bd5da0593a231018e88ef
MD5 10b0d5f500fa6a960e76c283f35e3c1d
BLAKE2b-256 318582e54d5bf793bc6ac32856de1a19b6689f6f7c022e81b9b82a9086e9a67e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b18b603468979ea7e69fba34f105faa4e4c7ee9b6ee27a59554047e7e4439b3
MD5 ab725d86b8682247d52b527016668de5
BLAKE2b-256 7968740f401c11a4b5626d18fec8096950cb7f9b1a3ff3f91f5365cf25862c9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 423.8 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.0a1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4ff2ede87ffcb528bbcfb10ed88d6381a49819dbfc7bfe36d0caaaf03f2916ec
MD5 6d886a8a0cf32b90b8f578366cda47c4
BLAKE2b-256 51e70f66274fbf23789eb7bd5f65b3c66163be3da5fa5a85c792094cfc60df9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a0eb3c6889fd3e4f8420d77959fc4a35f5fc2fcc41d38c8857204179852ff7a
MD5 3eb6a1013e1a83417197a9f56cd2f30a
BLAKE2b-256 f091f386f3c3831dc119367f43765c9521f498fe95399a91fa7b5b2611f66756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2c3da41f990d3578a6258158a95e01fbae750ff1d8064ebc945d111b9a595b87
MD5 fa84052bcb386ed11e567a8cefa04ab0
BLAKE2b-256 940531d423089611546d2157ad221b49875fe164de3b0e4bf28320c0f102e140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 807eeb3e9e0bc0dcc2c1429b3aced8ca44c8ff92bb89185ea93a760990f1b430
MD5 dafedcb7c7b2ddb65ee18a7051427e37
BLAKE2b-256 d5c281ce235f4d7835cba181e28ebda3700cba08adc2e5325ca625d7c693f983

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f25d407fb0070f591bbef3baa11a60a35b54e86f0803e5536bd6467e42dae192
MD5 bf2957dfdb9c776e4334c5d26e7aaeac
BLAKE2b-256 87b2af6dc07f834979d837638ded80448163a0274c89136ad99b9ae0a0d549be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddc4fc44cd0e1f2ad2cc5a444e7e48f4e3832503d18f2fe082450be392526400
MD5 192d62bcae333372c1c01729248e300d
BLAKE2b-256 1c1a4e6256505bb2dc8bdf1b49f2a191b0eff96fc2bee4a732c5dd62e3e498d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94b7cddf45eb4874d08ef4203b210c893dc7063473b075cc47ced0fbcb4216bf
MD5 30502c6d8a8c557f4f2f2e27e6b569fa
BLAKE2b-256 e6ad1eb01adab43fed1490d8c3bf020d9c4e800f89e26376de20acac236a4595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47737553322fa1652cceab8e7bf85a963da1827d88dd3e76f07d61c36daeba0b
MD5 badba2a9013d71f3c3a53f85a2d06a81
BLAKE2b-256 e9931861685dd50f3e96ddddc9990d2886acca1aed6accf2657914ad3e2c1972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3efb8d3c754ac21aebe71d1494f2dfc2cd79ddcddd55ddef8ad7946472c35f1
MD5 ca766afc25b7fd9e8918708a742708bc
BLAKE2b-256 db2bd6753da56e1f5e145526490c047f3a6e181a2a77294fb72b6de2cecd1be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20ca97fa8e52e04a2e15e82de2c20f0980a92feed55ce6531530447698d15092
MD5 1890754e1e896c87f03e3f8380d888c6
BLAKE2b-256 5a2e97500a332e06a3a82fb7455f2884e0cc3d0f8ad368d23840003147564eeb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 425.7 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.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cbdd5b3efe6df648a4bcb5e9da7259840d2dc5d22b4959719fe67c3638b1826c
MD5 97ff796e131bca2a3a8d74ebb3e20d8f
BLAKE2b-256 8e90f560d907669facf1a0981c46b500d476d8a03bd3988c3f9545a3d7607226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 df2a98da057847eb66475f5443e19c70a5a910b47945a2315334923f8823cda0
MD5 01e258dca9cb9d5ca9535f2abff74856
BLAKE2b-256 46ef2eae8bdb9b5aa10b22ac6d4ee90cc71bd07e0bbf36bc6b0053c384729ad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8e7e7e733bbeead9b361db5e63c60efbaa62dfb57f9d9b7f315778f6192315cb
MD5 15cd7fadf613fc6ee0ba6746c4e1e7a7
BLAKE2b-256 0e3562f96d4d350aabd1585f40fb7dd5b7eae569e5cc3afceceefa8b3cee9341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 699fdec762e0bb5209fe99d0198bc5432032c3641b0f09db23d377e52f27b454
MD5 8abd2f034cf2a72d3ec9b3e022be9cce
BLAKE2b-256 66ad27f752d4a9ac04dbea71f7d630b9c398fdcbd78517781901b25f5ed80d1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d730d3cfabb1751340354af3e14c33ee9988ac2cb13bf56b5c5fe7b4255a5a2a
MD5 163132944a4c89687c3a98dc58d02597
BLAKE2b-256 bdc0f66bd334c50e5b6a32dc3d2d7cf33b77aadba178958de395f59419caa696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5d4c42acdd760ba97dfb08c9a5ac0440e2cd8c19b9021960a65a8383172efdb
MD5 e4211df80653c42029851569d89dfdff
BLAKE2b-256 e53ca8f94db2abe9e6abf41db59107eb44c6ac6d0a497a7d07382632ae19da20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10851b9d859281f5ea42f76153379cc3937ec1de6961dbe39ead2fe02a04d430
MD5 134f005fc5f084927c36f92d1529b7bc
BLAKE2b-256 074f2c2bfda677271b1e28b87353e94106b408215ab3ce96fdec33fe3258ebfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fc10526f2931ff4f8ca27bae05465095822155adf076d834073cda79c9ebb0b
MD5 7b05907388e574cc8f235e3cfa0c94c7
BLAKE2b-256 c91547a8075ba1cd2ed0c92e415221cfe390ac08f3d8952da18888b2a7b67b23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6e83814d2ad735ff5de8cfc14440270dbec2bbd5aee94019b0d63717e35d48d
MD5 1d84807f6575122ede02005263e3355e
BLAKE2b-256 60b26f2994ceb6492e0f60614d8d9f3bbf7ae02e8b18c71936d1170fe698f0ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95f92448bcf2480c074c0edf1268a25c9331fea84abf9f2d4a03995749f97cdb
MD5 88aa59e926a5fb60194eb85b4d13b7b1
BLAKE2b-256 19edcb08de76fe57e5182738846146d7af887c0de498012a06eb0959bb55e978

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 429.0 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.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 51ace942acba1f42dd6e79e4d6c3331d3a16e5ffef78d9ac4f34fa0642369d25
MD5 ff216ee839d565f6f87a7ac279adc113
BLAKE2b-256 ab45d8203be6fdf502eb9b869b91f9c2f64604eba3573c5f7a53109b0abf8e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6bb083ed9d9e6225dd29b8ebe312e7bdc36a7b3f34b1a6678bb827a83e3a90ce
MD5 e64594e26b5642ecadc50e02bbe05d27
BLAKE2b-256 c736f10b71d95d85d9a8a4eb478bc14f0188f0f7e64fb03968a353ba727d1a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 29618a227d085c1e0e3a25b8677c78a1957b57c0f63dc23fc271296ef774a058
MD5 9186bed3925c1f926e4e9655606a3a29
BLAKE2b-256 98d811451d666eb3816f007e1b5e0f92ecec5a16ecc5bd9b685920a964186d15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2f922edbd4b7d380f4f5142c84ab21a87c88d99ecf016bdd51c3370b99e9cd5a
MD5 aea6403d29d809bde2fb36b80fc1fac2
BLAKE2b-256 80c40da32a949f0175393ac2643a2d3df2a4b93fe67be0a74b9c7cac12d548b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a812d85c42f065235ab46de4494a90648632fb850d317565d717a153f7686391
MD5 012ec84757fdb98551a1f02384572286
BLAKE2b-256 9133847246d8b2053d499eb72d611fe889e51c7b8a60548bfcbd290db65f4a4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 028524f2386b95176513305e43821562310a0ae55a8ee4f91ebabf678ba542c8
MD5 275288d2f39f81309bd92455cf8a2a6a
BLAKE2b-256 fa62da7909bf48f0b1df6d5e08a132f376f7ba50e6767e3bcbfc9dac2640a4af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae4fc0e92fcd175203b4120417433b97c7cf2efeaf12bc2082917f0e72c67d6
MD5 7150f41bfba291294202964fb034a37c
BLAKE2b-256 eee73b09e16ae615f05feaaada1611582bdd1262f2fee10353949fe3ddbaa0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 654b9ca3d052caf5f67549efadb51ae1b00a9214ac1152b8218c45427b353138
MD5 310bfce80a466da73246ee2fa0755076
BLAKE2b-256 ab162c83e041288e1c3d0d1e71819c103ea2921128a9332cf5cb6b1000b6f493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c98b7347a4cd727c2733424c8ceb3a7d372cb1f4c33976211294b7dae200287f
MD5 9c1631cf34a8181ab0131b494c132cfe
BLAKE2b-256 98b5629237087250051454c5a0ea1287b689992bc72cee255d72b3941b154b22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34ba5ae027761c5304b6829bab591945844430be466b318d72f57154285a972b
MD5 347e488c4cb00fd2bada37b3f06d886d
BLAKE2b-256 126203eaf32276086950f233ad4793fa651b7681395af2b41b5c4fbbca9c80f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 429.1 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.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9e7054e0025afdbb920ed516e498ae885067bf69e4cbc7310ebd18e2c2acc7ab
MD5 59893c22d29d99e0dcece7faf9cd4a42
BLAKE2b-256 35d6ede630e2beccc0c7ea4d0343cfad3d0fd9e67cfecfbdf497cbaa0355435c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc1c8f5a492df4cdc231bda72bcc2dc0f075cc4298fe5ea149d07d9baab7836f
MD5 92bb6121ad4235948697f4e89b6e24e1
BLAKE2b-256 b90c9f462270955898937c134629154f4d531901decc450defdfc0c4f32fd435

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 19cefcb71f2b0707433ac9cd530a98b7da2c00fa585318228c0ee5bafce0dec4
MD5 7cbe0be382893ea144bcaa44cb984e3f
BLAKE2b-256 97456963d918f64e1861bc6d7ad5c7d2f4b86ab288ae067682a5d7a48092223f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8cdefdf9cb11f9bfb6699005ae545b1eaaace338bef17c91005757cffb61ebeb
MD5 8b5c860416a480c21db8b2d7ae8bdf88
BLAKE2b-256 abb209c4e2e4570a6ed172f76238dd1fac5cddb6af8b8f5f25d83bac66b9cd13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a002d452d1579b87fe36007a9858d278751322b3baa695ea2beb1843bf6e5964
MD5 c0521ed283c3fb8f2c34cff873e6fb55
BLAKE2b-256 a3151f0e888445aa93874cedaf8415f7fdd0358aec0cf6d0e459eef2b5c1a607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 286e2d2ba0267d1379b600693178fddb6afd07a9cde4e774145960b72c16d82e
MD5 9a22840d30af33ecb322d63c4ce47a11
BLAKE2b-256 cf4bc98a44562ff9e5aaca54bf2e471cb652932d6fc882fc0b205c7d55864fff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49a7b4f5b9aa927ce4ac465551c7fbb10aa1d2b781e9723a27c1e7038ddc73c3
MD5 17706c9d33f2953223821847ed1d20c2
BLAKE2b-256 52f4b650400f951f8d2afede3f936e3bf0aa8ac4c7553a1130c6774189c60306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 14dd495388a8d4cb3cd526f35a0bf427c09364bb6873cec8d94ee118f696d668
MD5 32d2a8bcd592ceacf36be7364b21de62
BLAKE2b-256 f0ed8fde7a8b33cfbff241d27e723463edea8b80991cf18e585ce4c07ec4ccf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67467ff8bbdb73317566a29c87cfd47e1095d1b96bdcc5fe3ce0cce802b675e0
MD5 edc0e963aeda623ef26cfc13d10f6b37
BLAKE2b-256 e00a4ae5bfd0af5cb9fc8e82404e1bd51d76d70b9869ac18154c5182de937616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 048c71a0ac1b8057b6026781a9c4691988cb139a5c225ede3d581f0de67f712a
MD5 cc2c6d979ff18de0ec25a9ec2ba140d1
BLAKE2b-256 beb915be306e6a8b69c710d1b918f3e5a786e5aa8932944aa31f33e70e703d15

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 428.3 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.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2242511d47aa6ec3c4505d697b35792663e20b01c93809d8b23c0b11f4a6c166
MD5 dd02651a27798995237eb73d629e0684
BLAKE2b-256 8f0edb5294270409e64cef78624475e167410ef382729acb27e302de268c9317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e3d888d438ae9b0bd53c300abe567f40cf277ef944d73cfea6bb9e0b5b6b91ea
MD5 3d43f9463842073bdd5f482a3bb91fa0
BLAKE2b-256 355b02615361f990baab01f10dce72de1ea1cf7671e7a273f4c9a2cec263e328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6570c68b430fdc9dbc596041fdbebdd2030cf17883f84039cd67603053211992
MD5 c278123b389ed73fcaea829a6885a2c4
BLAKE2b-256 60667dd3177921d5282ab1badafe2f222f1c2a00fe4f68a79729cddbb0144b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83a64b6ae724c0469fbe9f7c19a7694fb49f719f294bf01f63798ecba92513e0
MD5 fc75f4b361e01ecf8bfe30ff132d8750
BLAKE2b-256 8dc5be9f97fc831fb549a7deeaf2f856aa440dc1d3dcb31bff795caa1ed188e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91c8a4e8da1b9614f5f5e71ab402a6613b12daafcd0a3d840576f92846091f1e
MD5 691bcf735090be5febb6d748ef23b901
BLAKE2b-256 5b86bebd22da3a77df7cfc7c373e29a4626324275b9606a4bd750cebd90e916a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 718d80336d711a104cbded0f6ab3ed51b05ba442962a82a3d9127a3205a139ed
MD5 c9d927eb8ae369cb61024453fdf3749d
BLAKE2b-256 2003b7da2eccfaeb8b2470f63e8e9707441fd353648a8714b0619fcd40c78ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b971f0683b23b98dab9320abb4c975cf21c74b68705af83bec4c82195fe30563
MD5 a31b3d76d50511b007dc3a855f266b7f
BLAKE2b-256 e8552e461a8088b43765ca28d89d3a2a7186ef2e20bfa1f0d10b3d0db2f65360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a4949b792c2cb53398cf8818fb3d8438bc05af409de723a8102323357d4b9de
MD5 60b3dc7fe916d8e22160ffc7cbe32845
BLAKE2b-256 c873be1760175a8f61c4d5bd2c10072f3a7bda50cdb630cb0abfc3c01a510681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43c1a4aa823607b27a7659b306e50064526ba3bba2043e80666b573dbd15bcf2
MD5 ad00fad66d6c4e20475fe9ae58495be2
BLAKE2b-256 934a8961de5638017c2774982ccc66087912fb2a2e6fb2e60acef027e58633bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b5548449c795c3db60134f773e05397e768eaf1e0648ceb20823d3db3192483
MD5 28cddba74a780ba30306e6313d58c5a2
BLAKE2b-256 479cd60b7e9dfbaeaedbdf747e433ff494644d7faa99b9229501eb92f23850b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 428.7 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.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf5fd6efb117644df09726ae308015fd2d4c7967f54fed7763e20712327eccc7
MD5 841472ce3a957ed7b103fb555c8c1e26
BLAKE2b-256 0959757e9e0de26d8cc4890f3d941658db53506da6e6f94ef1bad2a0c0ad9fdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 381598088962058f7c51041872625087ad9a37ac38554b6f9e269513f5522db2
MD5 c008c79f7a33c8e64c8ec1bea51f23e9
BLAKE2b-256 593aa7ea4f7997f029443f0c5fc06f1caadb3d9d22f67f6b6c1670e1e1cd6ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0aa133a52c15540e1a7ce99e7497e006d1890b173c58450716fcba493181f6a6
MD5 0eb8167f0defe5c506a1779e56d1817f
BLAKE2b-256 9e24aa68bd202f66b517a98f038bd98ad42478c9e4dc226925d5a1d1b7db4f91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c776d456f3f2d8d569b24ced0a4cfe144f5bdaccf3b3b4255f9db1d0a959f337
MD5 5f92540b6f4c3cdfcf8a414643f84fb9
BLAKE2b-256 7fc2684941b6c7c7a760c3c5044e3fcdf0a218069239d424aa5f8a14dd3213c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6deea0d294de4741b0978f9e5cc2cb597c66c9cbba19da7c36c1e8219db6085b
MD5 64048ea082188317e5dd7370c5923d68
BLAKE2b-256 e38acfcf0330a0ebef638e3a70a361f82214df70f6d273155cadc69579153ef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb0f065754ea8e34c9e9e8fb3faae4ea7aa52838a8bffe9155013e898ad2dcdd
MD5 bfb0de0315f74f68f25d867c92281d50
BLAKE2b-256 3111dcd165b0641539c599531f17368d1870feb223ad8bfe01b7f6ee9fdd3f49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e08587d64193c5a7530d5787ba1820f2cfe932771a4591b36ae46da5536f7bd5
MD5 a040e0d54787762a3b407326807b7154
BLAKE2b-256 ac6d3ca6775e169312b80e16f340e1d04814bd972ce66b995554ebb76710c1bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 239f26ba283ed9161c7f5be54a657bcdd42e78b47f1b16c922549e4defe6904e
MD5 ed7cb81725e64521f4751a149b5af17e
BLAKE2b-256 c478298b8b47eb2e4971ccac6c7e4412dc94462629dae308066e8165773c4c35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2151e3a99a95786b52159e8c85114e41c262ae71804286f4870fc10b4fc6ac7
MD5 4955553d1cd7d00c9bb5b45e26d5ac5c
BLAKE2b-256 cfc433d0e89b987bf901bd25d19d936e41fc03f85bac46b671482dd77d54bc1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 820193d65f0c2eb76ce33b9fdffbacd977274573bb0ec5952ac8bf3fbcc2dda1
MD5 0aa0269e5e9a3aba998f466c0fd86f0e
BLAKE2b-256 72ba696294aa7eaf6ecd1f55d7966104315dab2a5b553429396f6062254dce82

See more details on using hashes here.

Provenance

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