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.

For consumers that want raw pairs — e.g. an ASGI server building a scope's headersraw_items() returns (bytes, bytes) tuples (names already lowercase) in one call:

h.raw_items()                # [(b'content-type', b'text/plain'), (b'set-cookie', b'a=1'), ...]

Errors

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

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

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

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

from httpunk import ConnectionClosedError, GoAwayError, HTTPunkError, StreamResetError

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

Utilities

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

connect

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

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

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

Auto protocol

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

from httpunk import Backend
from httpunk.util import auto

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

Connection pools

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

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

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

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

Graceful shutdown

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

from httpunk.util import GracefulShutdown

graceful = GracefulShutdown(backend=Backend.asyncio)

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

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

Proxy matching

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

from httpunk.util import proxy

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

AsyncIO utilities

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

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

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

import httpunk.asyncio


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


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


asyncio.run(main())

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

from httpunk.asyncio import ServerConnections

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

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

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

import httpunk.asyncio


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


asyncio.run(main())

License

httpunk is released under the BSD 3-Clause License.

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.2.tar.gz (286.6 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.2-pp311-pypy311_pp73-win_amd64.whl (434.1 kB view details)

Uploaded PyPyWindows x86-64

httpunk-0.1.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (753.8 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

httpunk-0.1.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (809.5 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (699.0 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (570.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

httpunk-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (494.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

httpunk-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (518.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp315-cp315t-musllinux_1_1_armv7l.whl (797.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp315-cp315t-musllinux_1_1_aarch64.whl (688.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.1+ ARM64

httpunk-0.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (556.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

httpunk-0.1.2-cp315-cp315t-macosx_11_0_arm64.whl (482.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

httpunk-0.1.2-cp315-cp315t-macosx_10_12_x86_64.whl (510.7 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

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

Uploaded CPython 3.15Windows x86-64

httpunk-0.1.2-cp315-cp315-musllinux_1_1_x86_64.whl (748.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp315-cp315-musllinux_1_1_armv7l.whl (799.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp315-cp315-musllinux_1_1_aarch64.whl (692.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (524.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

httpunk-0.1.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (558.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

httpunk-0.1.2-cp315-cp315-macosx_11_0_arm64.whl (484.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.12+ x86-64

httpunk-0.1.2-cp314-cp314t-win_amd64.whl (425.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp314-cp314t-musllinux_1_1_armv7l.whl (796.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp314-cp314t-musllinux_1_1_aarch64.whl (688.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

httpunk-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

httpunk-0.1.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (555.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

httpunk-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (482.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

httpunk-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl (510.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

httpunk-0.1.2-cp314-cp314-win_amd64.whl (427.6 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp314-cp314-musllinux_1_1_armv7l.whl (799.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp314-cp314-musllinux_1_1_aarch64.whl (692.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

httpunk-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (524.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.2-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.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (558.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

httpunk-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (485.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

httpunk-0.1.2-cp313-cp313-win_amd64.whl (430.8 kB view details)

Uploaded CPython 3.13Windows x86-64

httpunk-0.1.2-cp313-cp313-musllinux_1_1_x86_64.whl (750.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp313-cp313-musllinux_1_1_armv7l.whl (798.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp313-cp313-musllinux_1_1_aarch64.whl (694.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (523.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.2-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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (558.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

httpunk-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (485.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

httpunk-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (513.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

httpunk-0.1.2-cp312-cp312-musllinux_1_1_x86_64.whl (750.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp312-cp312-musllinux_1_1_armv7l.whl (799.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp312-cp312-musllinux_1_1_aarch64.whl (694.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

httpunk-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (524.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

httpunk-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (558.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

httpunk-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (485.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

httpunk-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (513.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

httpunk-0.1.2-cp311-cp311-win_amd64.whl (430.5 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

httpunk-0.1.2-cp311-cp311-musllinux_1_1_armv7l.whl (803.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp311-cp311-musllinux_1_1_aarch64.whl (695.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (528.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

httpunk-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (566.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

httpunk-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (489.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

httpunk-0.1.2-cp310-cp310-win_amd64.whl (430.8 kB view details)

Uploaded CPython 3.10Windows x86-64

httpunk-0.1.2-cp310-cp310-musllinux_1_1_x86_64.whl (750.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

httpunk-0.1.2-cp310-cp310-musllinux_1_1_aarch64.whl (695.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

httpunk-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (528.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

httpunk-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

httpunk-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (566.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

httpunk-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (490.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: httpunk-0.1.2.tar.gz
  • Upload date:
  • Size: 286.6 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.2.tar.gz
Algorithm Hash digest
SHA256 98c892670ad8cfd9f3f5dea9e1d1d2b434e1f5ba39cc47ad9bd43fc821f67e46
MD5 cfaa043c21c688c5311aace77b8191c4
BLAKE2b-256 bc609db58e5fbe39a6e8563933d3e0ae06afe115c189dce298f9161b0482ff81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a4cc913242d478f4a34cf8a703fedc0fa102ad0839ac27b794319235a480dec
MD5 dcc96c583b0bf4734f360b781644555d
BLAKE2b-256 1fc8cd7feb2c40ba70666bf66ac1c2c9dd3608b1677e6daa955d2700ab75bc83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0e192359f9db22404d20f67df69d16ca7a17e8316fbcb883018e2f9fc38083c6
MD5 96c0ab653af8e8c08bc54aa39689e610
BLAKE2b-256 842ae0d76b1d34786ed8e05d2a22fc479feb8ddbccced69886bf6dd30fe7ebb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4c29053f77e4aa424b534be889e41a7f2a382786616065e196bd0de572321af6
MD5 0d4a75382942e3b659d97405412660b8
BLAKE2b-256 b182c07dc173201c0112ff694a31f964a50e702fc6a8e2153582e10475173782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e8c5d903e959781248a1cff65f108f8181b81e6bbf4c52d8b58a821ff379c720
MD5 ed0a31abfc58182a524f1206f9d03ec6
BLAKE2b-256 c5af6365f11f4ddd662354ed6c04b8fdbf7d21acc6a464f7aef81891310d64ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b62ce01506a5d652ffa97bc968f4f77593a5fd8a0f0babc85642bb3fef1b651
MD5 5751f356698a45787d9e7cb7613ea91e
BLAKE2b-256 25e1b72a63a0d9ee36349cca8b940bce99fafa1d5522f388ff25b961f7a7adb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b595671be5247b787a3f965d2861a80d80320ea6df4dcb59d5a86ed070837280
MD5 0a230e0710115c561c763281c3423f24
BLAKE2b-256 b95060b869382299fb19ae499889627d7229abfd360830baeee5723d12f50d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e79785fab745262b7004e1f0ef124d8f5eee67da2b3dbe1c55f3a95ca51bb29
MD5 55b99580246325c323e0d657414499ba
BLAKE2b-256 aa8ba0e7ecd44488d1008d86c48b56a818aa01d906b1be83fcfa51d9514819bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4636ba7d8ac7675536cf6ebcae6d4e0e3118a417031800919ba6c4adf60a6432
MD5 143b4f4ba7639a5563336f12ec5a8cb7
BLAKE2b-256 0a54100479a52aed316dda81cd4d944cc51dea335fe073002624a506e81418f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50554b270516810d36d59559745b11fb9a0ba3466fdca562277d5b53b0086760
MD5 a055b9be8d347b03cdca7852b35a7543
BLAKE2b-256 ade8a5973708874f25dced9af096d40d421f1b56132029c577f688a94bcf055e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4369cf9d270a7d43a38032527a59b7a763680cd1d736904e77f04fddc29431d5
MD5 9ef18c18bd20fb950f01dd2736774415
BLAKE2b-256 ef6f113623390c565b489466bebad8f4840c26536ad9a82720422b1397d00f87

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 0f2f6c62acaa0ae3904c4ac4a3c7d60e49c2dad40e17b6c8ee8b9b2ab84263e5
MD5 47bd0a598a75bc5b50a15ef81850f297
BLAKE2b-256 2f20f3961e4dab792b7293acc3f6b7b5ff288527a13fc32352233e95522f2469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27f9b79c9b001179d4043aacfc46c9469552c38e7887541d24bcaa14a9c3ee08
MD5 05bdbea17cf47a1686c53074581165eb
BLAKE2b-256 e17737b161d65d2d0605b34cfaceab17677c28e7c018863712728eee5ff1bf49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 faa7614c9786458ccb322044f1b6840b033bd1ec3c267d36894dc867abcbe9f7
MD5 561b3caecda7acc9ce195f287d316ef0
BLAKE2b-256 8d2f484bc22ecd6948f9984e4b06f87e3f85b33941277635425e14a635a7f34e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01f7e36a36cd855609ea001b15ba9d635059b6b747656830e98ae7a63d716178
MD5 c4022e4821778c2597892ca65bb4d660
BLAKE2b-256 81db8ef82fe263a8df986b6c87f4fc67805d0367fdc12be6ba7b59b652234836

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e7d0bad0e799ab664f3b30387871cbf61233ec78edcac95618753b5a5aaca16
MD5 25b51923ecbeb4332274395bad2f58fa
BLAKE2b-256 4fd243b3c29bd67a5a19f24b2fad4994b08e1438aa8565ec2f61581c8395c49a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4894d300645e388dc2145f68e2d2777f3313fdcf475fe379bc45d12eef48314b
MD5 4266cc472c7efd295383171da0b1a383
BLAKE2b-256 63edfa46fe0631c88f97eb0cbb5e71f0ed1f2971cee488a812ade067d45630c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 422298eebcfa7e1fdfd76de7df863953945882d2120bbd4f59ad9fdd75f19447
MD5 6e15d1cb68390377e205ebce8c33b5eb
BLAKE2b-256 a73fb309ad6e860021f26970269efba0446acdc207682e1e25c5369ae77d55ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d395e4b45be63c0840e645881a9c9b9e64dceefcbac61960bef7ac34bf1c705
MD5 253d89a9e42f2e9a6e0ad37a8a96972c
BLAKE2b-256 afb31128bcc4e18e97df588d7960e85db6f1cde7b8551b0d78c6bd741cb9436c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff6ab93cf6cf7325b60434ca3fc557cfd9fa43c2cde227b7d705c33ed5f3f1f8
MD5 1fb0f8e71dfd4f17361fba97734af92b
BLAKE2b-256 9fc0ebc1f7a5d446dbe1da5206144d71ff19d8f97ad3df85ce6c37fd9d855596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c7234c061e03407bc735ea8f029092d049bd5b68c76a47d885774531ff1c830
MD5 5226a0e84ca29c122cc8edc99622790f
BLAKE2b-256 c1de75de845140bd0ab07fb8938ae8aa0428171aaad6f99d959b5dfaf9de060b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9aa71fd1741e67e85d3697471d05b66924eb507d740cf1d91c0d05a77c1cb655
MD5 0a26c6476aa33e7b4c4895315d59ffd7
BLAKE2b-256 cce9a9f64e00d6848d86345635be5a7fe3767b7a37767b97e98a51abb322af1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0a1ee86f741e159d9e61f559eab9750a6b33b34030f0b13f310b05474bfad56
MD5 fc365a68b03ddc402f39b03d655e0128
BLAKE2b-256 d69d58f8a71e35a5c04239c5d13070ddc1ff6416b28e09fe233b7e250b7cd97c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0202a0dcb33852961faa54a37c8f0d6dd9fed0187788d059ab905d280d7cce4f
MD5 8f418d716c7e2cb4629bc4b7a3e10bd1
BLAKE2b-256 c3683e189219e2640c001cda6653331f79b0d05062d6d250eafb9e9b3d9d8022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d7d540e172cbfba3e1d84e21459fa6694711df9ced02630ac965328c91140414
MD5 092748f9ef996c707c9a40f1fa6dfcbf
BLAKE2b-256 1ea1f4b1e64d1ce6784f672bf683b5d47c127cb18db1352f8e5e4016909d2dcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76582a59c7103e3fb850b2367179722b6cdf871034db7bcacc5e4e30596c189d
MD5 e7f8ce6c97472127ef0cbdbfecbef5aa
BLAKE2b-256 bbb81994a4529948fffc31220e94421b3b9a6e867f09ed349b5c95969d2a41ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11598465eee76610a59d4fb85ec4f24870eb5e416799acc7e33c0575224d721c
MD5 88034761ed9e52086226a75ad9ea47c2
BLAKE2b-256 4390b40e96cdf4f50c31bbe0b4d24f415d2f69c465fed04fa16a440489215910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e271e801ada692cc1ae11ab75167a18677547b193a536b3f72c67a5c090bcc3
MD5 c262929c1d0ae735d6483fdf6b808db2
BLAKE2b-256 3f002f14bb869268b9bcb0d7466586a01956305276ac677c754041da855f3edd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e237a814143f5d0cda835546e896d831e782eb7f5a26fd78909f20ba91c7e471
MD5 a01a619067bb5f8aec8b39ce8e52f214
BLAKE2b-256 22934d9891ae3d763b286d8b9998e6165dd7f4f60a1eeda9a12e9cbc397544e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 880da256b399cf4bdf911146d042b789b1a2643d86e3c3efc8fcfbe5b486793c
MD5 5cf2635931bac1066782250100718ad8
BLAKE2b-256 74e8b56ec8e96b8974601a7cd234f4b7a5b8197da6c016322c92cb9cbedcbfad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e59c698b749ae796bb9c239c3bf4f1e6c800a597e11a6f1778a6aeb4042b3db
MD5 1cf1798ef6635c9af1093e0d32c628ff
BLAKE2b-256 60d7ce10ba649b31c78190340367c32557bd1fd3bb785a3a5e97b0e1f7458353

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 794c0ed0cd89615e0a836a259bfab2bdfd9f45411d910c56dc67b317a0132637
MD5 a061bfc00684d0c524d5a6d0989af0e7
BLAKE2b-256 f4c7a89d0b90b2efe1d01d7bcf8130ee7483fc186a9d8e72d0e201ff6a74b461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 89e9344f2ea05a1fa61c9e4c9be089d5052e5a9f8e1aa7b8165e28062acd629e
MD5 c08cf640c4cad8d8af182ad6271bb1e2
BLAKE2b-256 53874793cfe6cd21ca7a723740be413849157a9c23a590661b3609324c74bb39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8206d19033184b21da2bb1886421b5bf6d1f24b1451961ffff8f2a375e23921f
MD5 9fd2b773f0b9f2a8cde4f5178701e3af
BLAKE2b-256 77b6c38cf4c71c348b6d9a119cfe46cac191c616cc45b44d7646dab4e4e70cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 00a551d20e85663b5118f35cf2809b77d3fac0de332ba389fc77c8d63b295990
MD5 1241d9c1dd465a5e5c6baf43292b26b6
BLAKE2b-256 a3a7a333929102e57b1707586607b831aaa7f098ea52dce1c0da144c86bcba79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef0c4e00a1bfe38ac863ec8ed0a59b106cf346d19565e80e2b1fb1f2c41a9a7a
MD5 4ac05c3c37292fa63d8311899f04bf08
BLAKE2b-256 59dda1d301d0399c7bd251ebc65ba9a2d35c51833ab5398721b2393ed7762477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e12a4dd26d6f550bdb129ff1856025e6716437ab68063c7124cb08e972ff119
MD5 c5e14970b00473de98343fd03f4c20b1
BLAKE2b-256 af26f7e538d814ed09a185d71c1cedd7b929b98800e473b061c794074c0cfd0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3209c56d43de2d8a3ff43004b02c5320f659299453486fd254e6b34245317f4
MD5 22d06f933e0d1e3459489f5c8bf2c8f8
BLAKE2b-256 62974fa0f20ff65be498e97239d475504163f4770e901f7bb95c5d8f4f76db24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b64cfb4c9bcd5f97788e9a9759d7d5adb1cf267970f8a33e6bb21a4b4e9d2f1
MD5 94cefc25a60ebe40c5fd34f115f266a0
BLAKE2b-256 2ea6ce13e0b24120ea1814457e2111e7eb284626e6e8002d658aecf545cfb4d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c2813160bce81ae954b4f38b8481d1b8bac4a93e4ef900685783ca06dacd74b
MD5 80b1eaebaa640a17e8bda5740fa6ff40
BLAKE2b-256 423d2f7fd53e12a00a008e005eba3d6df04d38cfcb1fd07c9d391eb66e6266f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b1086c425be47019a13129d4f572b2306660c68100a32aeab72b003a0f1cb0a
MD5 ed3c330846381b33a703224be369693f
BLAKE2b-256 0ff85be42be3275598d7a13efda11d3c857733a47a92453a17647fcb9904ecd0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 534a742c62ae693c84b637e691df7c3b31f74af801337a461943ca6e4c2d6b1f
MD5 310f805b7add40e2f11193cd63f0ab90
BLAKE2b-256 1d243d050b384085d057f247424559ff2d6d2855de7c27ece3f371576c3910ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bedcf34b543f3a1f9071330417835f3f70b428dc7a026c599713f8a3c550b9a3
MD5 6ca69ae553f28d9c37c1e4137458e126
BLAKE2b-256 018ddb407ef5f6238fa17a0ea74e62dec93ee117fbd5250d619ae15f8b3bff40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4aa41dc843baa7e1e8abc288de835faee3c27c399b214bb602a112d6943195e1
MD5 07c54fa75d8bac46288c07e43ecec7f7
BLAKE2b-256 a2e2c23a501149f26738a6f58ef36c6040b3950edcf781733f0f3b8a69cc0e99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d8fd1444ee0d25bb4e28ea9be7524f71b8c1433101696da58240648c1d1762c
MD5 15fd7eb5c1fc07343c885a24f8a17e0b
BLAKE2b-256 a7f15aaf4117d33ae088ee253a6777ca7b31ade6dab6cdc101b12e0d32cdb43f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d50518f2b9b024167ed83606fd3e9e03b7789d930735f5b50c6ada588aeb883
MD5 e10ec01eec54d4edf71cc699acd244e4
BLAKE2b-256 27e1eb3cb95434b12703f278ca7e258593c8cf0028d706d065e8c10acd817661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b310fe014cc4be39b15cf798fe8485d6eb7e1dd55ac07b54256b2868b3889217
MD5 9247b3367bd729c2499cf3cb0636be24
BLAKE2b-256 aacecfe7fcdfcec86d0adf9ba1440cb1ec086fb86f80ebf9c67b3e1059c5a30c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af0c22f256aeab94fc21a28a3686a0e1d5717bedd0745775f67f6de68bace6cd
MD5 36e352b4f069457a7689a00f77d4127f
BLAKE2b-256 375dd043923f028bfed7a20e6fbf6b858a3bd180389757bd1d400e78e73b5a3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d0926f7235220d88d22b800c436918c396076097a0de555fbfaaa34aa65fbc3
MD5 b88cfc491c391e21b7c3512d756caca7
BLAKE2b-256 9ce071c07fa71620dfbd1b75f45ce1f0c75facee6c537cdc039a6f1030aac82e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c337c8bc998d8ebca3e4d8e76c45d1c09227bbb181956772533bcb09af986e0
MD5 1c6094188b4246a5e9b25c45e36816c1
BLAKE2b-256 93f6574d2a4440f3902e4fe7b99a559d2e74efdf89771ab6a0939de91b410550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4581b8cb8e230cf49d3602d6ad108bda518a35cf1985f82b30c9eaacf4b7871c
MD5 b122afaf9281db19b2fc2e269290fbf4
BLAKE2b-256 db18f468989386bf3c9fd47dbe0782fb1c8929c05acb6d4f118d8904316e1cae

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 06166ae7fa3abe40366ef2e1e8d4f028b4a6c7c83d6c5df852e05d504cffc7a3
MD5 dad333aeaa820a01866edf31b21e3701
BLAKE2b-256 1a9db5a504d4b965ef3116c2135ef542d3c76572a442b83e2431cbc04e29f255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bdd7a0f6b24cfd42851cc7c24411dbc49df21258254033daac661b31630c7045
MD5 cb537281161348ba0919105a6b50ee98
BLAKE2b-256 09e9bc12b58f4e350852b5948914afc02fb4c3454ff3d9fbef8993a438bf2d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9413dbb7c1c26b21ab693f31bb39482ac716f68144cd95ad39c59a28ea614a41
MD5 f253403745325b2e67ce5a09b2572ccf
BLAKE2b-256 fe310a981f28966b6b27b49160cbe1efd8732995da2c7abfc53678f82c73d626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dfb0dcf8086b28b3fd0275a1ac47045a01f1905eb0a3aea57d6b0c1977b36935
MD5 c1f2c0ce7101932d2b77250d12433cce
BLAKE2b-256 bdc5dd1670fee81e70396b60f84e3b7d36d51575e6b30b670aa73920987b6350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d113d52c1c024a4ba227ffefe482957c99f20937c3094896527db6311ece245
MD5 2052592777d8727ad9e2e3f26cc0b9c6
BLAKE2b-256 95a3477ba256a56db4950f7b7f1cd91fa646159449d01d9000139d83891c5523

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e44d5e07788e4ea941fcb3d41ac18f48960e1f71ad66edce22b18cb9d625ea8d
MD5 9aba1479a10637f89c9c6484d23e4a64
BLAKE2b-256 e5a1602508fc65b5b70f143bb60c221189fc9a5ffe1d15c840e340914b9cc53d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a9bab0efaf2a06ee76ac34824c3c73bb8e7f2de92ab4c288a3a6ed1d9fcd02
MD5 354c16710720ebabaa7817ba83886875
BLAKE2b-256 587415f61c22018eb517152fb65cc3ac17610468f6958f9ec8943645a6943ea2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4daca3a9070bbde9e990c600cc958ffe9b4bfec6b54e1e856f54d31492a0caf4
MD5 06996fa48a7c449193cb47870087ec42
BLAKE2b-256 8d8ed7366d85bcd4f80dd9f5e3ea1d36dfb37f107416df73260421f03c5b7d15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77bede1ed5d35fd4154716b0460d6b13d7316b139fe821580bfb7976fb32ef03
MD5 f1a9c958a0cb6feb50a3de8279ef9949
BLAKE2b-256 df67e8b08d18df40e8bb57b37a2893e998649946af0398c670447a29e5ac6538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c75384608f1c6078727fef0281b48b6425e1f0e05b3fddebb8055e81c350d59
MD5 56485d44c4438cc42cd61a89ba5589a0
BLAKE2b-256 5469ba88026bbc5bdd94f9bf04392d81c0fd14f1ccc3323d6f099851fc0ca81a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c7b147bd24b43229024394510604ca1addb970873c118b29973a104a610d7f4
MD5 291eb5b5938515f89165c8c28e079162
BLAKE2b-256 cd2d387d33106492137bf2dfd73a39caa1ad3d2911ae9d0d3d149596d0eca05e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e03543a0f5558fd40d01f940df4c723fb8222f1ef916f5d097e3adffe6db28f4
MD5 3c8974b6cd6dcde537bbdcd52a997e47
BLAKE2b-256 3b2c615116b2bdc63b1e9b8f36a2b585512589216bd820713f4bd77a9200ec6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ffe8031024dae955de67352763ee5021477688d1903def5cb7e765208cb413a7
MD5 e59f0a04f844a8e787f7feacf07aafe2
BLAKE2b-256 5070e06633689482ed0e7cb1d4e73b16676c00dd988cb41032c8adfc8a1928ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bdf2ceb6078c6e86524c17b62a89e28849dffdcefa95956b6c6ec1ad547eb8ef
MD5 d878f1c4ad6feee9f20093f344dce60e
BLAKE2b-256 5f2e6b3897a0180b7ea9372782f7daf78a7d0580cdf0d93607d9a5ce4332ac95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2cd22e04b70d9a868da7331d2617266cc18e7bc3821a66a34d7093127771689
MD5 bffb2e2aa550b6cd95a6f8563069c83d
BLAKE2b-256 5676728a2ea43e92c3151ad1e63d7fa66622710151aedf30925cadfa1eded8c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c19d30ec8dd9dbd48444de6041fc3ba375be895db9f3799338830d02f830a6d7
MD5 4e0c3eddb9f41e833f4ba32b5868fa6b
BLAKE2b-256 57ee9e9c98f07fcbea4725498b2b668978331e3028f43e06cce0a18b5024938e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd5ee9e4bed854cea848e30b5d5be8010b7fc06b9315f1175063a16e5d318bd7
MD5 2d5090edb6ffff1077bcc2dc06610dce
BLAKE2b-256 44897dabfe602d0c37003dab745ba341fe9ccbb3c0453d835f103330ff4f2eb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ce2b1112aafce7e311f20421f16f4b04f0b629ca96cedb25d647411588a773f
MD5 52a5ca960dec4efff603a82ba4b3aa0e
BLAKE2b-256 608bafbff9ec967c73c8b91de95da841dc3d597589cc924318dd188462e7baf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ac77efd39e59ae1b905927e88fce3eaba232b581ab4e168dde754f751d8e795
MD5 4ac095b90eb20eb4a5499e3696770efe
BLAKE2b-256 c17607906af5da64bb8eebada6c12351e9481f1c272ba27d3d2184d07e3abe63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09142abf0dcbb01ae78105dd2de962cf7a625ff19dc197436ac05d02c2106b02
MD5 5aa3711341998134d4b3e6a32d3854cd
BLAKE2b-256 0a800559df290ac414117e021987308d2d5b342da496aa0ab7500577c019d874

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08090fdae5757b4fcac425e23ef8d8a81584776cb9ba9dba7edc421dd3cb4488
MD5 4208fd79c8ae98e5163a6092db955514
BLAKE2b-256 adf8f23e59263d98ddd846102869a96f856fb50197e55d7eccfc0801df44e147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a5e5032c4cb7e8b5be21fc4f7a08f3fcd2d83d31bd5565d07fff20735c03a9b
MD5 640e7ef666a53c5793edd437908e09ca
BLAKE2b-256 567ff980aa818741df8dd787df6c1a265020761f4129de375bdf40b782b8734e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9ae584b6cff4fba2c2a5d8b6f75e1c3bcfaf021dd34bc0f62f412872fb9d285d
MD5 42b54858cdd72e794c62188c525f4818
BLAKE2b-256 73a34670c5b1a258a970078a6cf22579933e9150f3b525114f8270cca3e313bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b415eb0d4e2d9c3d7e3ccf765bf43aa0736448a70b0a4a025cf87313aa7487eb
MD5 d74d750363edba5d4e5c75deb65600ba
BLAKE2b-256 85cb4feceb6b8f19b503c5ae77f25d0c2ee8925bee01193e83400163653d97f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7aba649656313f3c0dd89d5dabd87d9022bac36138dee001d1f1f190e76b519
MD5 4d7886be193ae4782306a9419a1f246a
BLAKE2b-256 f2cfbb6531269c2cc4bda65189bd92a5eb5e69de3781579b3ec74144f0d59150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c5e7593068e13889cae99c9dee989134fbc4620a211c80c053795765222d9e0
MD5 55717a6a3f985e91511d77f55d60aab4
BLAKE2b-256 7bb25093ff46a7ff5e4523808ff0b20bdfdfb53209749cd41e35835de4154d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e76f6269d47583552b2f170d0c9616c2c455dcb0966348ea211ea68724a1593c
MD5 81d5ff36e7c5f1508e7b88ddb6a00922
BLAKE2b-256 88b296e4a1e11574db0695bc5a56da2b38d577e377abb0e1d0dccc49c1adec37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fd746697ec408056e256e4108694a3d1547c4dc1a3d6477815765c6e1883671
MD5 7de25215db3c70726b9aaba840885429
BLAKE2b-256 30675af215be5116cfbeb76b4f5238043ee33e8911a916b57bb5afb2a6039cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 379944538a837ee4c4c2f6e8b3463d5e5e821aaca36a5106181733665f798f55
MD5 7e0679c52077f289b69acfeca4a4fadb
BLAKE2b-256 7eb10a71d4b74cd12651568322ee7cfa5afb541d663aec10a410dba9fca2016b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4329ef13d7aba42e02b5e289b669a7b35264b492acc66a1d7744b8466ce119e
MD5 8c1811b12cb24651d6e08e2391ffe7a7
BLAKE2b-256 e5610bc0c73ebc041054fd70c372525b43fe2af8ce9bf055f8972219ec96b7cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: httpunk-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 430.8 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28584f7b865bc55e86db881cb14328abbe821741b668aff0ef976deb6e1921b3
MD5 81347dc60b60f4ec116886c883a8325c
BLAKE2b-256 c21919aabb31e293fcdda77554af773a43ba040c7d0a0498d87bb0ecf977b518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6891d305852889e28e6fa4d3f7fab3bab52a0db5d4c93adddf144138f84b7049
MD5 c9e1545d57c9a140de8a7623a0c647a4
BLAKE2b-256 794031815ab3cb272e7ff32d9211a9b98258446fb6638a46967574940c90e89e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f33901642dc0d2dbc70368647225c913e7c20d89444d49983186386693958a0d
MD5 c69ebf7b0007d4bdfb8321c1847b47e1
BLAKE2b-256 995484be27b12728c7ade9ab866110d6f3b609aea404f87ed03677bed28a9ac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 509796607ce268aea51f3449a1e526124d9dcc80384821ee299f004daee1d204
MD5 2e523ba0c5f6f788d1726cf7f3747847
BLAKE2b-256 c842aa081b321771d24379c5bc88466ef794a2056a6020536c5d0d3c55ae654e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 892dcf7f0f19f054f83acc07e2d007e80956443b5d9d4c93dad092c65e8138b9
MD5 f8e86b847be242cdaabe164849a18c7e
BLAKE2b-256 5b0374b57611b8d211403c563d0d986e39e2f70b2e05438072b8fd7c6252d536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cb3527d83a8d942534507a8067379ea241ec565951d0b2ed784b86c5dfe9388
MD5 5ac674c44f00200d94e3dab6f6b713b6
BLAKE2b-256 027c3e153f3f4da76a735f678a3e1de2e81e9d7e47cb6d53c94e9e436372e93f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80c71497a22ae89f8adb675c77e42505b33a67b246d39f0936134121e24f1816
MD5 d5b6be927ab217c411c95e63751284cf
BLAKE2b-256 20d6130152f8b8a00471fb52119f9b0321c03f03b2aa9b814aac7a4f6e46849d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c8a99b9b7768e41f9f556d9e236eb6b20fba4813c7c3483115efa1bef3d3bc8
MD5 5653f5908615a7da32aa2f4af3094a3b
BLAKE2b-256 09ee7cfa44902ba1c6853dee43d3b7dac011a62c05dae57fc280e2a72db93b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c02b4b09a65ef268480e480775a6c1702d37a21afe0c9edebedca22a24cfc92c
MD5 7d8100fead8fc4de4e93bc437dcaaf5b
BLAKE2b-256 4a49dd51596bd2455b737cd274b0148c1d7091e25e8ac0fe151ea3e12af7a447

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for httpunk-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62537ccb654421cdef09659fc47f677fff2e8ac8099daadb3e4911cb507ee078
MD5 08eda41af07f5313b9b9d46e20feda66
BLAKE2b-256 0c21da3361b63adbe45594be50fd2c815846908c34a30178890268cb00434ef0

See more details on using hashes here.

Provenance

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