Skip to main content

The Rust HTTP library for Python

Project description

httpunk

httpunk is a Rust-powered async HTTP library for Python. It's powered by the hyper stack and Rust crates like http.

httpunk is deliberately low-level: you bring your own connected transport, and build requests and read responses directly. It's meant to be a solid, performant base for building HTTP clients and servers on top of.

httpunk's API mirrors hyper's wherever possible.

Note: httpunk is in an early, alpha stage.

Note: httpunk was built with substantial help from LLMs, under human supervision.

In a nutshell

A client request over the asyncio backend:

import asyncio

from httpunk import Backend
from httpunk.util import connect


async def main():
    # connect() dials the socket, does TLS + ALPN, and returns the matching
    # (un-entered) HTTP/2 or HTTP/1 connection.
    async with await connect("https://www.example.com", backend=Backend.asyncio) as conn:
        resp = await conn.request("GET", "/", headers={"host": "www.example.com"})
        print(resp.status)                    # 200
        print(resp.headers["content-type"])   # b'text/html; charset=UTF-8'
        print(await resp.read())              # b'<!doctype html>...'


asyncio.run(main())

A server that speaks both HTTP/1 and HTTP/2, embedded in an asyncio loop:

import asyncio

import httpunk.asyncio


class Echo(httpunk.asyncio.AutoServerProtocol):
    async def handle(self, request):
        body = await request.read()
        await request.respond(200, headers={"content-type": "text/plain"}, body=body)


async def main():
    loop = asyncio.get_running_loop()
    server = await loop.create_server(Echo, "0.0.0.0", 8000)
    async with server:
        await server.serve_forever()


asyncio.run(main())

Installation

pip install httpunk

httpunk supports additional backends beyond asyncio, but they require extra dependencies. Enable one via the relevant extra:

pip install httpunk[tonio]

Features

  • HTTP/1 and HTTP/2, client and server implementations
  • Protocol-neutral structures such as Request, Response, HeaderMap
  • Multiple backend support: asyncio and tonio (with trio targeted for future releases)
  • AsyncIO ready-to-go protocols: extensible asyncio.Protocol classes (H1, H2, Auto)
  • Batteries in the util module: connect and ALPN negotiation, h1/h2 auto-detection, connection pooling, graceful shutdown, proxy-environment matching.

Usage

Backends

Everything that does I/O runs on a backend. There is no default: tonio needs free-threaded CPython 3.14+, while asyncio runs everywhere, so you must choose one and pass it explicitly.

from httpunk import Backend

Backend.asyncio   # the standard-library asyncio backend (available everywhere)
Backend.tonio     # the tonio runtime backend (free-threaded CPython 3.14+)

Every connection, server and httpunk.util helper takes a backend= argument, which accepts a Backend member (the recommended form) or an already-created backend instance:

from httpunk import Backend, H2Connection

conn = H2Connection(transport, authority="example.com:443", backend=Backend.asyncio)

Client

A client connection is created over a transport you have already connected. H1Connection and H2Connection share the same surface, so code written against one works against the other.

from httpunk import Backend, H1Connection, H2Connection, Request

# `transport` is any connected transport from your chosen backend
# (e.g. `await AsyncioBackend().connect_tcp(host, port)`), or use
# `httpunk.util.connect()` which dials + negotiates for you.
async with H2Connection(transport, authority="example.com:443", backend=Backend.asyncio) as conn:
    # Build a request explicitly and send it:
    resp = await conn.send_request(Request("GET", "/", headers={"host": "example.com"}))
    # ...or use the request() convenience:
    resp = await conn.request("GET", "/", headers={"host": "example.com"})

Entering the connection with async with runs the protocol handshake; leaving it closes the transport.

Request is protocol-neutral: Request(method, target, *, headers=None, body=None, trailers=None). The request-target is sent verbatim (a path, an absolute URL, or an authority for CONNECT) — httpunk never rewrites it or auto-adds a Host header, so you supply headers explicitly.

Response exposes status, headers (a HeaderMap), and a lazily-streamed body:

resp = await conn.request("GET", "/data")
resp.status                       # int, e.g. 200
resp.headers["content-type"]      # header values are bytes

# Read the whole body...
data = await resp.read()

# ...or stream it chunk by chunk:
async for chunk in resp.aiter_bytes():
    ...

resp.trailers                     # a HeaderMap of trailing headers, or None

A response can be used as an async context manager to guarantee release (cancelling the body if it wasn't fully read):

async with await conn.request("GET", "/big") as resp:
    async for chunk in resp.aiter_bytes():
        ...

Streaming request bodies and trailers

body may be bytes, or a sync/async iterable of bytes (streamed as it is produced). trailers are header fields sent after the body — chunked trailers on HTTP/1, a trailing HEADERS frame on HTTP/2:

async def chunks():
    yield b"hello "
    yield b"world"

resp = await conn.request(
    "POST", "/upload",
    headers={"host": "example.com", "content-type": "application/octet-stream"},
    body=chunks(),
    trailers={"x-checksum": "..."},
)

Readiness

conn.ready() waits until the connection can accept a request (an HTTP/2 stream slot is free, or the single in-flight HTTP/1 exchange has finished). conn.closed is a synchronous liveness check — useful for evicting a dead connection from a pool.

Server

A server is created over a transport you have already accepted from a listener. Iterate it to handle incoming requests; H1Server and H2Server share the same accept loop.

from httpunk import Backend, H1Server

async with H1Server(transport, backend=Backend.asyncio) as server:
    async for request in server:
        body = await request.read()
        await request.respond(200, headers={"content-type": "text/plain"}, body=body)

Each request carries method, target/path, headers, and a streamable body (request.read() / request.aiter_bytes()). Answer it with request.respond(status, *, headers=None, body=None). On HTTP/2 you can also abort a single stream with request.reset() instead of responding (e.g. when a handler fails) — the connection and its other streams keep running.

HTTP/1 serves one request/response at a time (the loop won't yield the next until the current one is answered); HTTP/2 multiplexes, so for concurrent handling you would spawn a task per request. The AsyncIO protocols handle that for you.

Servers support cooperative graceful shutdown via server.graceful_shutdown() (see GracefulShutdown for coordinating this across many connections).

Headers

HeaderMap is a dict-like, multi-value-aware header container (reused from the Rust http crate). Names are case-insensitive; values are returned as bytes.

from httpunk import HeaderMap

h = HeaderMap({"content-type": "text/plain"})
h["content-type"]            # b'text/plain'
h.get("x-missing")           # None
h.add("set-cookie", "a=1")   # append (multi-value)
h.add("set-cookie", "b=2")
h.get_all("set-cookie")      # [b'a=1', b'b=2']
"content-type" in h          # True

Anywhere a headers= argument is accepted you can pass a HeaderMap, a mapping, or an iterable of (name, value) pairs.

Errors

httpunk's exceptions all derive from a common HTTPunkError root. ConnectionClosedError is protocol-neutral — raised on both HTTP/1 and HTTP/2 when the transport closes with work in flight — so it sits directly under the root. Every HTTP/2-specific error shares the H2Error sub-base:

HTTPunkError
├── ConnectionClosedError    transport closed / IO error with work in flight  (HTTP/1 + HTTP/2)
└── H2Error                  base for HTTP/2 protocol errors
    ├── H2ProtocolError      connection-level protocol violation (-> GOAWAY)
    ├── H2StreamError        stream-level protocol violation (-> RST_STREAM)
    ├── H2UserError          local API misuse
    ├── H2FlowControlError   flow-control window over/underflow
    ├── GoAwayError          the peer sent GOAWAY
    └── StreamResetError     the peer sent RST_STREAM for a stream

Catch H2Error for HTTP/2 protocol failures, ConnectionClosedError for a dropped transport, or HTTPunkError for anything httpunk raises.

GoAwayError carries last_stream_id, error_code and debug_data; StreamResetError carries stream_id and error_code. Error codes are H2Reason members (an IntEnum, so they compare equal to plain ints) for known codes, or a raw int otherwise.

from httpunk import ConnectionClosedError, GoAwayError, HTTPunkError, StreamResetError

try:
    resp = await conn.request("GET", "/")
    await resp.read()
except StreamResetError as exc:
    print("stream reset:", exc.stream_id, exc.error_code)
except GoAwayError as exc:
    # streams above last_stream_id were not processed and are safe to retry
    print("server going away:", exc.last_stream_id)
except ConnectionClosedError:
    print("transport dropped")
except HTTPunkError:
    ...

Utilities

httpunk.util collects the higher-level conveniences a real client/server host needs. Unlike the core, these carry no wire-protocol fidelity constraint.

connect

connect(url, *, backend, alpn=("h2", "http/1.1"), ssl_context=None) dials url, negotiates the protocol, and returns the matching un-entered connection (with authority set from the URL):

  • https → TLS with ALPN; h2 upgrades to H2Connection, anything else falls back to H1Connection.
  • http → plain TCP → H1Connection.
from httpunk import Backend
from httpunk.util import connect

async with await connect("https://example.com", backend=Backend.asyncio) as conn:
    resp = await conn.request("GET", "/", headers={"host": "example.com"})

Auto protocol

auto.serve(transport, *, backend, only=None, cancel=None) sniffs an accepted transport's opening bytes and returns the matching un-entered H1Server or H2Server — the accepting- side analogue of connect. Pass only="h1" / only="h2" to force a protocol.

from httpunk import Backend
from httpunk.util import auto

server = await auto.serve(transport, backend=Backend.asyncio)
async with server:
    async for request in server:
        await request.respond(200, body=b"ok")

Connection pools

httpunk.util.pool provides three composable pools. A connector is an async callable returning an un-entered connection (typically lambda dst: connect(dst)); the pool owns the connection's lifetime.

  • Singleton — coalesces concurrent callers onto one shared connection (the HTTP/2 pattern). await pool.get() returns the shared connection, connecting once.
  • Cache — a set of idle connections checked out and returned for reuse (the HTTP/1 pattern). async with cache.checkout() as conn: leases one.
  • Map — routes a destination URL to a per-key inner pool, built lazily.
from httpunk import Backend
from httpunk.util import connect, pool

shared = pool.Singleton(lambda dst: connect(dst, backend=Backend.asyncio), backend=Backend.asyncio)
conn = await shared.get("https://example.com")
resp = await conn.request("GET", "/", headers={"host": "example.com"})

All pools expose retain(predicate) (evict connections a predicate rejects), is_empty() and aclose().

Graceful shutdown

GracefulShutdown coordinates a graceful shutdown across many connections. watch(server, serve) registers a connection and returns the coroutine that drives it; shutdown() signals every watched connection and waits for them to drain.

from httpunk.util import GracefulShutdown

graceful = GracefulShutdown(backend=Backend.asyncio)

async def serve(server):
    async with server:
        async for request in server:
            await handle(request)

# spawn `graceful.watch(server, serve)` per accepted connection, then on shutdown:
await graceful.shutdown()

Proxy matching

httpunk.util.proxy exposes the vendored proxy matcher (*_PROXY / NO_PROXY environment rules):

from httpunk.util import proxy

matcher = proxy.Matcher.from_env()
intercept = matcher.intercept("https://example.com")
if intercept is not None:
    print(intercept.uri)   # the proxy to use for this URL

AsyncIO utilities

httpunk.asyncio provides reusable asyncio.Protocol classes so you can embed httpunk in any asyncio program.

Server protocols — subclass one and implement handle(request):

  • H1ServerProtocol / H2ServerProtocol — force the protocol.
  • AutoServerProtocol — detect HTTP/1 vs HTTP/2 from the client's opening bytes.
import asyncio

import httpunk.asyncio


class MyServer(httpunk.asyncio.AutoServerProtocol):
    async def handle(self, request):
        await request.respond(200, headers={"content-type": "text/plain"}, body=b"hi")


async def main():
    loop = asyncio.get_running_loop()
    server = await loop.create_server(MyServer, "0.0.0.0", 8000)
    async with server:
        await server.serve_forever()


asyncio.run(main())

Each protocol supports graceful_shutdown() and wait_closed(). For host-coordinated shutdown, ServerConnections tracks live connections and drains them together:

from httpunk.asyncio import ServerConnections

conns = ServerConnections()
server = await loop.create_server(conns.track(MyServer), host, port)
# ... on shutdown:
server.close()                     # stop accepting new connections
await conns.shutdown(timeout=30)   # drain in-flight, force-close stragglers

Client protocols — the mirror of the server ones, for loop.create_connection. Once the connection is up, await proto.ready() returns the httpunk client connection to send requests on. Configuration (authority/scheme) is passed via a factory closure, since create_connection calls the factory with no arguments.

  • H1ClientProtocol / H2ClientProtocol — force the protocol.
  • AutoClientProtocol — pick HTTP/1 vs HTTP/2 from the TLS ALPN result (plain TCP → HTTP/1).
import asyncio
import ssl

import httpunk.asyncio


async def main():
    loop = asyncio.get_running_loop()
    ctx = ssl.create_default_context()
    ctx.set_alpn_protocols(["h2", "http/1.1"])
    transport, proto = await loop.create_connection(
        lambda: httpunk.asyncio.H2ClientProtocol(authority="example.com:443", scheme="https"),
        "example.com", 443, ssl=ctx, server_hostname="example.com",
    )
    conn = await proto.ready()                 # await handshake -> H2Connection
    resp = await conn.request("GET", "/", headers={"host": "example.com"})
    print(resp.status, await resp.read())
    await proto.aclose()


asyncio.run(main())

License

httpunk is released under the BSD 3-Clause License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

httpunk-0.1.0a2.tar.gz (283.5 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.0a2-pp311-pypy311_pp73-win_amd64.whl (433.1 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.15tWindows x86-64

httpunk-0.1.0a2-cp315-cp315t-musllinux_1_1_x86_64.whl (745.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp315-cp315t-musllinux_1_1_armv7l.whl (796.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.0a2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.0a2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (556.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.0a2-cp315-cp315t-macosx_11_0_arm64.whl (481.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.12+ x86-64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

httpunk-0.1.0a2-cp314-cp314t-musllinux_1_1_x86_64.whl (745.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp314-cp314t-musllinux_1_1_armv7l.whl (795.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (556.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.0a2-cp314-cp314t-macosx_11_0_arm64.whl (481.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

httpunk-0.1.0a2-cp314-cp314-musllinux_1_1_x86_64.whl (748.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp314-cp314-musllinux_1_1_armv7l.whl (798.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (558.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.0a2-cp313-cp313-musllinux_1_1_x86_64.whl (751.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp313-cp313-musllinux_1_1_armv7l.whl (798.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

httpunk-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (558.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.0a2-cp312-cp312-musllinux_1_1_x86_64.whl (751.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp312-cp312-musllinux_1_1_armv7l.whl (798.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (558.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl (484.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

httpunk-0.1.0a2-cp311-cp311-musllinux_1_1_x86_64.whl (749.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp311-cp311-musllinux_1_1_armv7l.whl (804.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

httpunk-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (565.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl (488.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.0a2-cp310-cp310-musllinux_1_1_x86_64.whl (749.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

httpunk-0.1.0a2-cp310-cp310-musllinux_1_1_armv7l.whl (804.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

httpunk-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (528.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (566.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.0a2-cp310-cp310-macosx_11_0_arm64.whl (488.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.1.0a2.tar.gz
  • Upload date:
  • Size: 283.5 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.0a2.tar.gz
Algorithm Hash digest
SHA256 1d28e4dc2b5efad6e384a536386a13da0fb1ac7bd42f7b919d995868d5e782fc
MD5 5e7c1a16b826b50cb8f3cce316a05781
BLAKE2b-256 92d2a15e1faa5e3f8a8b469531ea423c0dd8d3ecebfcfc730a25d74380452d49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c6b7e0e71e1ccd353b883d4087f7c9179325cf9991b7eac0eff5e142ad768bbc
MD5 596ffd5a585173abd5c679cb2dc27ae6
BLAKE2b-256 e19182b47339c2d72dbc584344cc16afc2a0bd2630facdea52be8644f0017476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3cc81e38d42e534bc292891ea894b6d917d9ce18df72b95615de3bab60fd607
MD5 a29d3b3f663a3e5c0976d4bc7bf8b352
BLAKE2b-256 123d8db7ac819756031604af20ae3e68b6806b704214f442c9b7afd4b315fd14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a952d018802971fec914cbfda18ed7e526833e17ccf5fe66f0c449f51e7df679
MD5 aaf2863d3bee7d058c675bc35c3add69
BLAKE2b-256 ff6b3cb27f06e792bb8b37a5e4f3d0295c675704cb7f5ae80f802637bd88f597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f700a668166732859c9f53f2b282f1be5a85cfec614a9bfac70a5686206c0654
MD5 fff355c54a8480d062926d26469c777c
BLAKE2b-256 2f2ef4de0c8c83037eefe7c5128727bb169ed05266d39cc71b4ed3ef1aa37c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 924c5342c9cdb34d73d5c53af2f3881bd28a17e8200b8137a9ccb93953ba8a57
MD5 e964ac06bd3321251c444a78c40bcfe1
BLAKE2b-256 7eaf0d98478d8738c834e565fd09effc91d7926ac57aed682af63b611d8fd7a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74c361a0b389b159a706089949af7374cf8b7f72d233c847e58fa1c4db07f92f
MD5 afba4574f52b0ad08ed721175a47cef2
BLAKE2b-256 45206efafa540f05959521116d8746fb62ce453ba923f2905442e97c92139aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 675389cc924223cb4dca85eb5e415d62cc172fb07e1b1b769094c3993aacea37
MD5 1c238d47c82cdcefdb64d74535e0651e
BLAKE2b-256 9c9d0b06aeb0053da0a10b4dfd4f5f59350a5c00f698880a82a64e34f8bcb6a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01d3fd91468bab5dec8aa79b5a7775b4b2d0c0b8d1c91f8eacc66cb5ad4c265d
MD5 ef425e9ecf58dd75e3607c8022b91069
BLAKE2b-256 0e279bd18b1ec70f9ac407032d41272cb8c8b44fa3ccbf565b0074d204002ccb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32c36660ec47c4e375ba202a265505ff81d93cd8e74b2d65f801ad3d8c901adf
MD5 b6796a8941dfae815611895e61111d84
BLAKE2b-256 f3627b1f42a743043673b03b0f64f385bdab74b9dd45395a62d809edf488e092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 363799da1a86e4998c3be9a70ead7acd4c4b5a0d8ac339a02f82494e12a2982c
MD5 31904b849a3a6b009f1f0450395ba957
BLAKE2b-256 c6cc58d8241f656b29a1a3930dd845f6747976a6e0e284b7139e69e2db0fd84d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 425.3 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.0a2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 a47c8b8fefb264ab4369e7641276a18cc53b2d6043d9739b9ed6ba9b56ebc64c
MD5 7ec2dadc2d4e69f81d5223441d81d21c
BLAKE2b-256 d13d5590438d7e78fab9e4b7622ae1ee61310059451fed8c087913241ce04573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f043565b78afdf9ed392ef41310a6a68d7c981f17a06e2cffbe65862eded8fc5
MD5 f0f7d9af42ac23db98c35380ff48f2d5
BLAKE2b-256 cd69a2151849536b0e7b6f79b16a2910a7242640935e5105dc208a7c452e6342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 49a3a87ca1a6d0b87e3f76b03a93b73099a5cedb30d329ac376e3df58aa77580
MD5 f6ad7df8ba0168b9930d782acb7ad9b9
BLAKE2b-256 09f90e62592341b0955ebe02e2315b81bd92a411b20626d4fdc017e24b11e8ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 071811e852626a08ac44c59ad77993e46b66857e81137848348bd74a8f2ddfb5
MD5 60409eab486671954d6645e152fae359
BLAKE2b-256 65a5b4a1f50b279246694b27de93ddbae2a9e2afd3c5a9523b0007b131a4719c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b561d9e7d9076ae609a3bd4a5bed3f4360d2f4aff56d0a80f938c171edbe0e4e
MD5 4b2782b74d5d42e1b4a94af0c3d004b5
BLAKE2b-256 06c3a1cf204a030554c5701c365a338940c8190c2ec521de03eeb97c80d35b0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afc183328cf4f3e5d50b7ed768e3273e91fb11a58df236f4086322993efc380b
MD5 5e7a94ea9b6caee579ee40a6b0e85310
BLAKE2b-256 a869e44c6aaf62ff9b26c96cec8881c5e0e44106e863709cbf9a5bf017360553

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65a10926ecf8b94e21025520796ac51d49ae41796acd6f3cd657d90ea55cfcd4
MD5 502791c7686afd3030e1c92de01610d0
BLAKE2b-256 ac05c1a75ed100b1d142333c981a82c8e93c956f30e238146b0ac31fc39c79f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7857d76e05424a46da6cbb87daf563b996d12df36e0c8594bb03eb7951c4d5e7
MD5 fdf9dd581a642756bd7278156aa6c1a7
BLAKE2b-256 a2dd2edef57815afc529bee9e68103894c57e39774b4e9187b1132035c084032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 490872bf0fab78e6e8c4bb62b01a3b713433dcb670a4c58a2d97e30084a6b1b8
MD5 8f690234c86eb7e25e46d7faa13341eb
BLAKE2b-256 246266fafead2197283b9fbad90806acef9e08df7dea0b726282afd50cbc58b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4228d6de828054d8b04362f7bcf2d2e334d32f89cb80d72950f8d4d62c70d9fd
MD5 72b846221b851fb233e4fb34eb28c68b
BLAKE2b-256 62f1281cd8dd66baa7103274dbe0fbc3ee731a18e535be3a4996399b8fcc41a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 427.1 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.0a2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 8537cf3b217dc6fb98fa0834d525c03bf9daecf6c77c0dcd467d2f6c257df177
MD5 d419d507b5ad3ab2208c58aa2e1603d5
BLAKE2b-256 627fec7e0aa1fe8102ccbabc892605af51751efb14418d776b225252fe11ea6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23ccc98de3c3ef3105a6548ec4691b173d61b73a8ba8c3a3ba49d6d7ad989449
MD5 7622ecdb6583cca220e90b007cd1dc50
BLAKE2b-256 a9cb345a281e8e2885c27cf1ae0338139f45a96ba26360c87be69ab291bfd223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2e6666708d80cb8c5606c29dd45a15173385dbc04f56f8996bed6b814642e09b
MD5 c26e0f04f9c635f97da19d2d26d82651
BLAKE2b-256 292210f749ed6bf14ddea998086e83221f8aea1ed78d8eb4757fbb6abfe0ca42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eeed23d2be19ac5186866f2e5407fd283c57991b1a3a38dba6d77f8002d51989
MD5 afccced4ae4602dbef12aac1e953efb0
BLAKE2b-256 cc9250aa97178a717e395203d50d2bf334c2b1320c6393554900bd6d9c95caf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed6e4600524c6c730f81e197416d76cbe943a2aa348e9b04b8f193b888a4df3a
MD5 9bd7c334839825ee516704f7b9403dc0
BLAKE2b-256 862a143f0f12010e35e35aebc7f6450133d672e1acf00c8b32047d175e4d54c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d35d916146fadb6030e885e7861996179ca90cafa13cd28cf293867918f0a30
MD5 af025c233a045b305c6ee1f293923efb
BLAKE2b-256 f1f0c7ad23e7fba691370847e22925b566c203c3eb97b034a453aa0af596b191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ac3bc7082b6bddc4074b373c9c3bc9ec333a561d34793ed1c7349caaf39a8c2
MD5 d892490782b5120a82be8bf62c5549c2
BLAKE2b-256 945465b7ce4671eb33630a962d2874be9cc965b4e295b61f62d6daa23f85a1e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f6aa88b4d8dec7525b5aa042f7e067aa3454fd1343ca1b7b5112fe7983a115d
MD5 c4616289e7e92c4841196192bb472690
BLAKE2b-256 54573ad75097aeea089aeadbf50ef9fc26d6787c80792ddb3521e1bdfc2d7374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a25862e86d416e0b87a49e4f1a7adf5d47d6e986c48786d29ac776da7c7b1f14
MD5 89cf5abcf25b0ea7f7d31d6eee7ef442
BLAKE2b-256 6481454e5687376f49c72b4caeee9a4ec3a1c062a1994653b7128da03e866890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e5c5b517ae0fdb16a5280accccab4b758d60876d365a3b814bfb7796aebaa9f
MD5 9ffa8d8c0a1688beeaed031bb8d14571
BLAKE2b-256 4abf690e1789fafe829f937a1294c3faf8c6f354d6ef28da888e0c48cb47c256

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 425.1 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.0a2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6c048fd132e52c22afcb8b1c52db3c32ad694f7508beaee81ea84b608afc1da2
MD5 f919760739135326660da5ef1f83c842
BLAKE2b-256 24370e0050c26d2365a3234a9b302144d791388dd0600a0a3e8cfe9f72b1aa51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f8dd87c69e345217e88b2f033bc1c4448182e8caedd51c6a0a3adc345e38ff5
MD5 e51aa35edf1c30585c6da5a384cde66a
BLAKE2b-256 f50674960257066700cae523a3eca9b79154839f1bc003c95621fda89fcf0da5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b4c761d143362906cabb720efc3382a904fb2a0c1077a977012d0d80b5778bcd
MD5 e5f56ca55ef9bbc7c005acd26089c3cf
BLAKE2b-256 9af151555bf9623ede5ce7b56460018c5e5c60e28cf08732f76a97d5a002a18a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5e63cc09b9953528de0921cc1b45832858aa0c8ea82424bea4f2a941c85b8941
MD5 43b0a426964e6b29b26a1347416000d7
BLAKE2b-256 dd1dd0d903d3b37bd47dfaa4aec305de79ea4c644ff07f72db14205a8182cb16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb0048b8ca012bcbd385e8d0d6c414c9b3d63f6592a82f15b64c246d34d4e8e1
MD5 73d1b9559485e5e4d72ba29c0407c0c3
BLAKE2b-256 499ec2fa326254ed7342b21f69c1c9de0405619793e45d3fcaed0ab9a58b8f99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c40674aa2e1c96e095328bb1e147fe56e02b0f6e9293f4caf54f843ca1c1c6b
MD5 0436b1f85da1781c3ca518a131c93ec5
BLAKE2b-256 7d54965d57db4380f8be9d571260490a479dbf367e251931bb34431f7a761adf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f9b9ed59902ec084feb1952388b0086906218e8cd372cfbe73ce3288d1f3745
MD5 4be28f3ead05b3778e4498264bab03c4
BLAKE2b-256 aacb24023e231279ed1093cbaa20dbb7d02471b9277bbee86bf6dcd98fa6fd60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 511bb91e1b791b24a0a0b573951b3d561f501233091ac5eae1f4fb015b01b443
MD5 fc1d571d1a0e5d68a14cd7a48929506a
BLAKE2b-256 16820f3aa0cec1e1d914e0270c2e5475530019f7cf639a51ef7392a59c2fbcea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed881e3cdfe9250b9e18aeceba6764d3d8a50b01d44f727564691f3e9a0c965f
MD5 abdc8d56bdee7b2d11a2282ca2bd3ec3
BLAKE2b-256 8d10b8e16112759d22a36a8dd5a43d17cf09e0c55a66301efad535104536a8d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3f63d6cac308d0202beef69e91ada95966c823ad37e7cadc53b8db53b217ab2
MD5 85b4ca3603db65a7640ad83b6ba09211
BLAKE2b-256 88c7dd42859dc4717b88c6a6baea03b56fcc529dbbd043f2f65d227b3f32a89b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 427.0 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.0a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9528366d83e0c167e4a7464115cede8800a0585b62d6a35cd9208b261cd6f435
MD5 cbcf762c3d04319d9b41f728a39b2929
BLAKE2b-256 75f0000100a0a3d90caaa7a09220328663a8e4bd273720e80aba247bb9924282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6e0f272e46844231fbb4ffa721342953df619cdf6c56ca0883492c0d14ecfe2
MD5 24ea6cf92cb5b20b7544fabc4486e295
BLAKE2b-256 1fdcd1edcefea4bc909703ee931d756ce5f892e82fd4527d1cc92831871d7fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 776f898184e79db1d5c88bb19697a9ef7b39bc5d7e6f8e4b3385cdc9e18e7e0b
MD5 a42670bf883c70917d1925476b635498
BLAKE2b-256 6475408d947c949015e5dd0192a99fa0ae4dfd857bd54223adf5aa6de331a018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01d8d5178e15263ebd3ccb24ddbfc21edf436aad6bf2fac31cd7f154be74a185
MD5 2ea4df50e835f9b613c5401ea771f0d6
BLAKE2b-256 778cf65c19bbafec7fc7242a2d530bf29ca3199ea6b6594141365393ef869604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ca9a329538aa75ce05440a840a64bf3a9fe1d00a97a46ffa860ecc1e02fd4eb
MD5 826e707dc06db0cef1560669bc66823a
BLAKE2b-256 5f6cee82196fd56e833b577ae6833a1b9aec25b52b7cdd3527f5f978a6db359e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5cce16dfdb34da08b5fb6139579a99b7d15c42410c4cc5b88a46e0597a4593f
MD5 eba5890e524508996af3c13d17cd19b1
BLAKE2b-256 4373160f1fc1ee9ba4002373dc5fd21ea84366a0a7f5f98f395ea3fab0f247e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5a28b92587c488eddbc4b60cee27c424b6d5fe51e3cf7a357802875f9b9daac
MD5 9b3ebe875d95eb78e06d06eeb8e3664b
BLAKE2b-256 592269cdbf0d896b0f58ec870642c0e4b8cc0e69df664a3cd45c27d690e3a56a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ddc88b90cfdadb7859eb6fcbfe23f935ab0984535fec20070e83dd81580a119
MD5 27a741d7eb82cadcd3b4dadfa124a2a3
BLAKE2b-256 d388c4bca4cdcbb21ea66f1d6114b759cfb6fa136228ba4b727ef18434af14f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09aa85ce2aa0820d9870cb4e553e52bb10c81fcc61511bafbd7c442928cb37f1
MD5 8b0791aa29697222f9937ef327146987
BLAKE2b-256 cdbeaefcc47e9d49c4bb1586ff113787d2a807511127444575935893251b9d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7201515fea12b850855113272a430e3a2098fe24e74881a118a07162fd646d5
MD5 0865057605eaaf837ff3aaa2d61adf16
BLAKE2b-256 16422fb0cb603c61fc30161aeb8449a1f8740eb137726b017692267fd056e25f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 430.3 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.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92f5aa168d412643b6c94c9ca8a2c9b488ee87dd6eaa83973fbd3c4ba37b71d4
MD5 21b76241d12e0021f0470ad4920e60f0
BLAKE2b-256 8328fb98cc0da5adf2058d8076611dee16dbf651f4489da56552609fb4a3ccf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92bb1d2872cd16b6265a8bd765289e75a399d1062bcdca658d72c6bc652909ae
MD5 2ab45170c88488fd878a90c685b3b491
BLAKE2b-256 9caae843bfb0180b7469ae9fa15c1cd57c022e2b3a53f1b75f1c812f5cf8b3ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 25f19f0fbacaa24f8d9086aed151566abb938ee5243fd611cd682506c73af53f
MD5 297c5873b110b1d56401ac4fc490c05e
BLAKE2b-256 8b19a449d927a83701fc9b54bb1ddbb790fbf95f7faca8e1ad03e59b539802b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fa6f8fae844ba4e0960ae71302c1fee9c7505530a008f8c7ddd1406f5e699c5f
MD5 cede6ecca5859cf790e4303b7b332bd4
BLAKE2b-256 61b674b3775229b21eb3d5d92e56d35718f90f71bb618c106de054f849d88c4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22365fa84cf80f93d3d75fba4fcfca8fe686d9525e68b93428e3c68cca3dab37
MD5 9061979cd41914dc36c09e9c84ca9d57
BLAKE2b-256 0e104615dc7bfcfd76467acc6c49804ed1403cecec42d73d965587f8a1ff181b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a679f1f329487017c3c1e8ea31076ae6a48c349e103f73ad2fcf1f11dc5182de
MD5 6c3a9b0b450bb9e6b56a8e005bf4cc3f
BLAKE2b-256 a1f36da13bf80b4a00f69a0f1592171dff5b919c0b40cb8e7d7ee07b06110772

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 258466198bbcc7cc03bee6e0dcfb2aee3b55e180d95809ccadcfec8c0fb5a1c4
MD5 93380f774e27156950d26293bfee8599
BLAKE2b-256 3e656ac26cf677ec061f22a790f9f7bb4a06f6a6df29dfeb88510f79ec365461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f19d67277d11f81f1af2c76fbb9e08a048c4c88335c543bd45e3ed383deaac7f
MD5 4d9edfd70c53272a52cfdba1d8159820
BLAKE2b-256 71b3f8877f99d6863df901ad04dbc92844a09e16cdf9a214f3995a2add8f4a77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3651323f52d71ffd825e6b50785b2826fdfc557eaa36d7e4452786e333f31e36
MD5 f805d8f614a3a5f885ed7c8291bbfc5c
BLAKE2b-256 56bf70e8ccaf10ddbfaeafb69017a6b867fa3d20e49d988bf1b906d93c2ae4ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e58feacf4edf2b94a79426ef6901b48cbb31d454d8c76a6c0a4a4a8cf07f85a
MD5 48359c93b05f413e526013a849e1520e
BLAKE2b-256 b4a690cd12d4e389341654a62068a963a648d4a0e248f0ac6ad133c8d7f1776c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 430.4 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.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 60af9f6fe1c70e2ba2978d3dbd60a5e3a15c0794579e1f6fdeb435b720ffa928
MD5 5f4a467c0abfa3d17427ec7a87cac6d4
BLAKE2b-256 8b136c459d3dc12ad3f06d09a13eccf536de325c7fccfd363150c1dc6715e4ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bdfbd7a01fb4d7c7f032e2cb484a02feb971370d11eb6e800fa1115ca7047d59
MD5 673968f57077c68d13fac72d40c17d58
BLAKE2b-256 277d6c500984996b89c9f22240ae89abab94b608ad570524f91f8792ad2cd637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a067577b2df5da955538a889e408672fc2f060e3d0762bfbf7898e184020027a
MD5 90187a7fa735a959056b0ee45a7ed34b
BLAKE2b-256 8227676a3cdd8ed35ac12ce3f01794c28ad7e0b168163831d75aa0a4b163e08a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80982171a137845575484d6ae68b5468bbbb03524853e31523ee36080b36a9dc
MD5 2ffbfb7dc80d788b1db1b6768ff89eac
BLAKE2b-256 1f513719d3996866bb89217ed5d7c1cad7f7f26f1ca7c6ad362bf818a0d91e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2167ef9e7d62b963028aeb2d5eb984135532f9b30d9fe9e3f993ff231817a761
MD5 eaf81ad8577d28f0d9d3d809fbd06c40
BLAKE2b-256 aa34923538b5d37f656babf1555266d7296259eba19f546672b794b87f3afce6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 019d8293689072d56d26fe6517ff74a950745520cd868c8eb9da109fbe3bb60a
MD5 2cdb97fd99925b458f3880b264dc9b8d
BLAKE2b-256 8fdfe6b5a6c6ec413110cd0ccb57db90f4c131db290a99a8743ea9ee0f4ee939

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 390a9dddd1e3e5e3018ff80587bb94c5ed164a746f56def38b4b12dd87688ff0
MD5 8403de869c35cc237fa3d4fdfbfd0ffb
BLAKE2b-256 67cc753f23f2bb820dc2a422321f591f0904bee5d19437a1e93be2cbf728e934

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 baaf9013200d2a8dbdf4963acd9baecec0ed4a35b4b0f61444ac3181ccb7cb5e
MD5 caa995acdb21cf49e3af420dc882e0bb
BLAKE2b-256 89fbd3d42d138ee71466696901539cbae914e7d2398f377e95c18304fbd449bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecda552d3e965965b59ae09b52171b5e846462efd4846771f74211c7c8bd25e9
MD5 2b13db46fb20c696aeaa99bcd75f711d
BLAKE2b-256 4bfc18bf4b9786bfd0df4ecf2801cca55f8a79013c47e938ac7e6c81d9f193e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 376c44c0973baa8e280b95220cf4dafbc37ce3eed8be217c4e69eab5165cff30
MD5 a333027b6a8f88c014872fb8c261a3e9
BLAKE2b-256 d8d632fa8f8f83b5f78c024be54b4b5959a5136cfe86209f3fb6c87da0753e81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 429.7 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.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a9d383b3ae995143d699b857c5ee5ff8d1599f064c82e2aa2987e889da16366
MD5 56b67c9320deb6eadcc3e403f515d920
BLAKE2b-256 a42127b28c4ae5c79703307e789ca66d283d6c643bc37becbf596d716701a098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e1bdffa30ca93e694b847b463ef6b3a9bfd5039a20ff296e691ccac19b1ae94
MD5 8e18c5df17026b9c7d870ddc3e05eb3f
BLAKE2b-256 c37511f99a86192cabf0182745865ba86cacc5bf9a7f6fa1217cbf993283ee5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9103362bdd6b51add5e66d8853cbdb6d345b1d2450ae46f4d8ec823876aefecc
MD5 cd3f73823eafc3caceffdd03468ea9e0
BLAKE2b-256 d520c022c66e0058125ff98a0956a2825d1332d6a5b1db22e82b4c592d3006ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 314a4ef1fc8d196f9892da1cef437a79ae7c00adf3de5e820492a2ea608dd3d4
MD5 7298d363b49152d118f47fc70a6ae560
BLAKE2b-256 808281daac893eaf93103e5c61164f0f5e24a06cf197db7f6f628999824289fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f7e31674ac6e683a52d2bab67addeb1cb0cbc5968dae22338f04c1ce04cb6ad
MD5 077c020861e1e7cf6539e3e51bdd0f78
BLAKE2b-256 4eefe613ad9cb7d2c04a199fe5e77c35ccd18dcfb6ea4acaf405d82cf5e01ce3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e59742ff16c8f0477c3e996279a5abd35aa8b1e42ce650fd40f2ea43058d0825
MD5 efef7376e37a8067b6fcf3a70043b0aa
BLAKE2b-256 59e0764039895ea5e06e491f75ec6ed52959eb2134a767049adda1f0c4c0e557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18924fcad94cc0403209c88a96cd5256181d39fc75ace1ebaefd1eb7a5658adb
MD5 2796e0086edd4643301bbedb52e6602d
BLAKE2b-256 b135ecb27a62f2be3ba200ead292b4a15d915abdb0805a029e34a504d1e262f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 827a3615e49bc19348db93a4c0d1f1236a8298f17d05f7a4852fb42e8c33fd9e
MD5 1284937658ce1cbdef5732593ccc4f7e
BLAKE2b-256 80afcaa3befdff364234880732b5c3de5007bd62e4a2033a2853cb228e646e49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec58ed1836d6b21d4980d6e34b3a9b13a0a12d58af2d520718114941f44ff9e1
MD5 1503462ca81f424d967ef2d6247bd283
BLAKE2b-256 bfb1477f386ba6fd550fb3e4d4f1649299a1cad9737a36d146caaf2b63ba6d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c815154273466a4ce710a2a5807ba016bd49c674e97ca27d2fa95ee34bb6307
MD5 3452c1ad65f451257f88f2d2cd2bfc60
BLAKE2b-256 ae98d9f13c8765d68b30ad161eff1701ba304dabc4892db164d1f8b5d15a13ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.0a2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 430.0 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.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 40d1fb7625d9ecd8eb6f7bb2c10dcc71fab3b8f5132f19968060c21b123dd939
MD5 b9d4f4a61bde991fd3165bdea22a27d1
BLAKE2b-256 35d6bc324bfd97125f9c5d139af49a0b994501fa87d047f512230c39b7d16dfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50586735759429aeb63031d4f3d046dc84901798989c9bd8e43a8647111d8ca0
MD5 f4988d7a42705ef34bdcdc52774d2332
BLAKE2b-256 c89b20b83151cf269981016d16fd938d579aa7857d769f9446eb5546cbdc50d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a1e0089a34afcd725e204442fbd81a98c9a0149040aed936e9e6250889f99070
MD5 30c86ded4bd9e3e44cbbeb2f7ea2fa1e
BLAKE2b-256 5b9c1f6516f626eb4b55729ae72035ca241c5bbd53e3e8facbd0fe5618a22e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68e00d0b23d47ae4486f047da97ad17e06c6bcd87a7b8dcbb206410aee77d8c2
MD5 eb981095402beabbf1d7cb25fbbb77c0
BLAKE2b-256 dbbc8d28a9cbea55a0c301faad1bf80ec0cf2fe8d57e184ebaec21f5a81ae6f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fb381e03afa456f2ca03efda5b37ad135f6c0200c1c4eb1c511cc4b402db3f0
MD5 80199dde47d2285f26e9234faf3673fb
BLAKE2b-256 221b5215cb50bd99610c998617a67c69c1baf9c508fa2afe5d39789def0105b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90363206601721a78ed777207fd5bd97bbd34f3b796e11a4caa0503eda753992
MD5 643e146f0d992f3771c650a724136839
BLAKE2b-256 f3338e6e4a891505e03d23486b0751a560565298269e9690835312c303b04bea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73515261ee0a5192741b0d9102b704fefb1725b36333fd87334336dc98a8eaad
MD5 9c4eef5923979be9ad75657cc2a8fd3b
BLAKE2b-256 8416e0b5655b64358409a176196edd9ba9ead13e4c0d4f30906c3311a0b58bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f936244a0bf0699463ea9f74d0302c43a6405bfab13d275e43fa73ddd75620c
MD5 3768eccd8b8dea19c3587e8af50a17d3
BLAKE2b-256 57bbaddbefc0f2004c94fc732a53ff600f49c368e4701f0efac0a66489eb5040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3da0dc5ee4075550cb2e3486bfa85bc26f0f395eb4d0abdc6bcddc8d3df81eb1
MD5 1372ef95cdf4ed325353e2aae2ad80ca
BLAKE2b-256 5a1b7e3af521ea53b8b88b8324f213cfeab2c4d925de60a5e70129376eff6799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.0a2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c9e61b349719b29999f02e637482718fcc90b473a46bb704a7edcb50aebecad
MD5 e2d78e4e7b8fb42b3b7750b9a16d768d
BLAKE2b-256 3f80e47943d5a75b129aa1d14d29a61ae11c48bf66806ddc6351b9e63662c316

See more details on using hashes here.

Provenance

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