Skip to main content

High-performance HTTP/2 cleartext ASGI server

Project description

h2corn

h2corn is a high-performance ASGI server for FastAPI, Starlette, and similar applications running behind a reverse proxy, with HTTP/2 cleartext (h2c) used on the connection from the proxy to the application server.

Why h2corn

  • Better security for the internal proxy-to-application connection
  • Higher throughput and lower latency
  • Lower resource use from a Rust implementation
  • Compatible with FastAPI, Starlette, and other ASGI 3 applications
  • RFC 8441 WebSockets over HTTP/2
  • Multi-worker supervision with graceful shutdown, reload, live scaling, worker recycling, and health checks

The central design choice is simple: keep the connection from the reverse proxy to the application server on HTTP/2 instead of translating requests back to HTTP/1.1 before they reach the application.

Keeping the internal connection on a modern protocol (HTTP/2 or HTTP/3) avoids the downgrade that can reintroduce HTTP/1.1 framing ambiguities and connection-reuse problems. A good deal of the published request-smuggling and desynchronization work focuses on exactly those downgrade paths; PortSwigger's material on HTTP/2 downgrading, HTTP request smuggling, and browser-powered desync attacks is a useful reference.

Among popular Python ASGI servers, Hypercorn is the closest comparison because it also supports HTTP/2. Uvicorn and Gunicorn are familiar migration points, but they are built around a different deployment model and with different performance characteristics.

Quick start

Install with uv:

uv add h2corn

Or with pip:

pip install h2corn

Minimal FastAPI application:

from fastapi import FastAPI

app = FastAPI()


@app.get("/")
async def index():
    return {"message": "hello from h2corn"}

Local development:

h2corn example:app

Startup output:

h2corn v1.0.0 • HTTP/2 cleartext ASGI
Listening on 127.0.0.1:8000
HTTP/1 compatibility is enabled; disable with --no-http1

Started worker [12345]
127.0.0.1:54321 "GET / HTTP/1.1" 200 0.4ms tx=25b

Typical production-style run behind a proxy:

h2corn example:app \
  --bind 127.0.0.1:8000 \
  --proxy-headers \
  --forwarded-allow-ips 127.0.0.1,::1,unix \
  --no-http1

--no-http1 is recommended as a fail-closed hardening flag. If the proxy is already configured to speak only h2c, it does not change the intended steady-state path; it simply makes accidental HTTP/1.1 use fail immediately.

Why keep HTTP/1.1 at all?

Because browsers generally do not speak cleartext h2c. Without a reverse proxy and TLS in front, a browser cannot talk directly to an h2c-only server. HTTP/1.1 is therefore kept for development and local testing. In production, the intended protocol remains h2c.

Running behind a proxy

The intended deployment shape is:

browser/client -> trusted reverse proxy -> h2corn application

The proxy handles TLS termination, browser-facing protocol negotiation, and public-edge hardening. h2corn then handles the application side of the connection.

Proxy headers and PROXY protocol

h2corn supports the two common ways a proxy can pass metadata downstream:

  • --proxy-headers for Forwarded and X-Forwarded-*
  • --proxy-protocol v1|v2 for HAProxy PROXY protocol

They serve different purposes.

  • Proxy headers carry request metadata such as scheme, host, and forwarded client address
  • PROXY protocol carries transport-level peer information on the connection itself

Both are accepted only from configured trusted peers. In many deployments, proxy headers are sufficient on their own. Add PROXY protocol when the upstream is explicitly configured to send it and you want that connection-level metadata as well.

Reference: PROXY protocol specification

Caddy example

example.com {
    reverse_proxy h2c://127.0.0.1:8000
}

Pair it with:

h2corn example:app \
  --bind 127.0.0.1:8000 \
  --proxy-headers \
  --forwarded-allow-ips 127.0.0.1,::1,unix \
  --no-http1

Reference: Caddy reverse_proxy docs

HAProxy example

global
    log stdout format raw daemon

defaults
    mode http
    timeout connect 5s
    timeout client 30s
    timeout server 30s

frontend public_https
    bind :443 ssl crt /etc/haproxy/certs/example.pem alpn h2,http/1.1
    default_backend h2corn_backend

backend h2corn_backend
    server app1 127.0.0.1:8000 check proto h2 send-proxy-v2

Pair it with:

h2corn example:app \
  --bind 127.0.0.1:8000 \
  --proxy-protocol v2 \
  --proxy-headers \
  --forwarded-allow-ips 127.0.0.1,::1,unix \
  --no-http1

Reference: HAProxy HTTP guide

Operations

h2corn has two runtime modes:

  • CLI supervisor mode for multi-worker deployments
  • Server(app, config).serve() for in-process, single-worker embedding

The CLI supervisor supports the operational features you would expect in production:

Signal Effect
SIGINT / SIGTERM Graceful shutdown
SIGHUP Rolling worker reload
SIGTTIN Scale workers up
SIGTTOU Scale workers down

Operational notes:

  • Worker supervision is Unix-only
  • Workers that keep crashing are restarted with backoff
  • Repeated crash loops stop the supervisor instead of respawning forever
  • timeout_graceful_shutdown controls how long workers get to finish in-flight work
  • max_requests and max_requests_jitter enable rolling worker recycling without synchronized restarts

Configuration

Configuration precedence is:

CLI > environment variables > TOML config > built-in defaults

CLI and environment reference (`h2corn --help`)
usage: h2corn [-h] [-c CONFIG] [--host HOST] [-p PORT] [--bind ADDRESS]
              [--uds-permissions UDS_PERMISSIONS] [--backlog BACKLOG]
              [-w WORKERS] [--max-requests MAX_REQUESTS]
              [--max-requests-jitter MAX_REQUESTS_JITTER]
              [--timeout-worker-healthcheck TIMEOUT_WORKER_HEALTHCHECK]
              [--http1 | --no-http1] [--access-log | --no-access-log]
              [-r ROOT_PATH] [--max-concurrent-streams MAX_CONCURRENT_STREAMS]
              [--limit-request-head-size LIMIT_REQUEST_HEAD_SIZE]
              [--limit-request-line LIMIT_REQUEST_LINE]
              [--limit-request-fields LIMIT_REQUEST_FIELDS]
              [--limit-request-field-size LIMIT_REQUEST_FIELD_SIZE]
              [--h2-max-header-list-size H2_MAX_HEADER_LIST_SIZE]
              [--h2-max-header-block-size H2_MAX_HEADER_BLOCK_SIZE]
              [--h2-max-inbound-frame-size H2_MAX_INBOUND_FRAME_SIZE]
              [--max-request-body-size MAX_REQUEST_BODY_SIZE]
              [--timeout-handshake TIMEOUT_HANDSHAKE]
              [--timeout-graceful-shutdown TIMEOUT_GRACEFUL_SHUTDOWN]
              [--timeout-keep-alive TIMEOUT_KEEP_ALIVE]
              [--timeout-request-header TIMEOUT_REQUEST_HEADER]
              [--timeout-request-body-idle TIMEOUT_REQUEST_BODY_IDLE]
              [--limit-concurrency LIMIT_CONCURRENCY]
              [--limit-connections LIMIT_CONNECTIONS]
              [--runtime-threads RUNTIME_THREADS]
              [--timeout-lifespan-startup TIMEOUT_LIFESPAN_STARTUP]
              [--timeout-lifespan-shutdown TIMEOUT_LIFESPAN_SHUTDOWN]
              [--websocket-max-message-size WEBSOCKET_MAX_MESSAGE_SIZE]
              [--websocket-per-message-deflate | --no-websocket-per-message-deflate]
              [--websocket-ping-interval WEBSOCKET_PING_INTERVAL]
              [--websocket-ping-timeout WEBSOCKET_PING_TIMEOUT]
              [--proxy-headers | --no-proxy-headers]
              [--forwarded-allow-ips FORWARDED_ALLOW_IPS]
              [--proxy-protocol {off,v1,v2}]
              [--server-header | --no-server-header]
              [--date-header | --no-date-header] [--header HEADER]
              [target]

High-performance HTTP/2 cleartext ASGI server (v1.0.0)

positional arguments:
  target                The ASGI application to run, e.g., module:app.
                        (default: None)

options:
  -h, --help            show this help message and exit
  -c, --config CONFIG   Path to a TOML configuration file. [env:
                        H2CORN_CONFIG] (default: None)
  --host HOST           TCP host convenience override for a single listener.
                        When --port is omitted, the base configuration port
                        is reused.
  -p, --port PORT       TCP port convenience override for a single listener.
                        When --host is omitted, the base configuration host
                        is reused.
  --bind ADDRESS        Listener addresses to bind. Repeat the flag to add
                        more listeners. Supports HOST:PORT, [IPv6]:PORT,
                        unix:PATH, and fd://N. [env: H2CORN_BIND] (default:
                        ('127.0.0.1:8000',))
  --uds-permissions UDS_PERMISSIONS
                        Octal mask for Unix Domain Socket permissions. [env:
                        H2CORN_UDS_PERMISSIONS] (default: None)
  --backlog BACKLOG     The maximum number of queued connections allowed on
                        the socket. [env: H2CORN_BACKLOG] (default: 1024)
  -w, --workers WORKERS
                        The number of child worker processes to spawn. [env:
                        H2CORN_WORKERS] (default: 1)
  --max-requests MAX_REQUESTS
                        Maximum number of requests or WebSocket sessions a
                        worker should complete before retiring. Use 0 to
                        disable. [env: H2CORN_MAX_REQUESTS] (default: 0)
  --max-requests-jitter MAX_REQUESTS_JITTER
                        Maximum jitter added to max_requests to stagger worker
                        retirements. Use 0 to disable. [env:
                        H2CORN_MAX_REQUESTS_JITTER] (default: 0)
  --timeout-worker-healthcheck TIMEOUT_WORKER_HEALTHCHECK
                        Maximum time between worker healthcheck heartbeats
                        before the supervisor replaces the worker. Use 0 to
                        disable. [env: H2CORN_TIMEOUT_WORKER_HEALTHCHECK]
                        (default: 30.0)
  --http1, --no-http1   Whether HTTP/1.1 is supported. Intended for
                        development purposes only; disable in production.
                        [env: H2CORN_HTTP1] (default: True)
  --access-log, --no-access-log
                        Whether requests should be logged to stderr. [env:
                        H2CORN_ACCESS_LOG] (default: True)
  -r, --root-path ROOT_PATH
                        ASGI root path (to mount the application at a
                        subpath). [env: H2CORN_ROOT_PATH] (default: )
  --max-concurrent-streams MAX_CONCURRENT_STREAMS
                        Maximum active HTTP/2 streams per connection. [env:
                        H2CORN_MAX_CONCURRENT_STREAMS] (default: 256)
  --limit-request-head-size LIMIT_REQUEST_HEAD_SIZE
                        Limit the total size of an HTTP/1.1 request head in
                        bytes. Use 0 for no limit. [env:
                        H2CORN_LIMIT_REQUEST_HEAD_SIZE] (default: 1048576)
  --limit-request-line LIMIT_REQUEST_LINE
                        The maximum size of the HTTP/1.1 request line in
                        bytes. Use 0 for no limit. [env:
                        H2CORN_LIMIT_REQUEST_LINE] (default: 16384)
  --limit-request-fields LIMIT_REQUEST_FIELDS
                        Limit the number of HTTP/1.1 header fields in a
                        request. Use 0 for no limit. [env:
                        H2CORN_LIMIT_REQUEST_FIELDS] (default: 100)
  --limit-request-field-size LIMIT_REQUEST_FIELD_SIZE
                        Limit the size of an individual HTTP/1.1 header field
                        in bytes. Use 0 for no limit. [env:
                        H2CORN_LIMIT_REQUEST_FIELD_SIZE] (default: 32768)
  --h2-max-header-list-size H2_MAX_HEADER_LIST_SIZE
                        Maximum decoded HTTP/2 header list size in bytes. Use
                        0 for no limit. [env: H2CORN_H2_MAX_HEADER_LIST_SIZE]
                        (default: 1048576)
  --h2-max-header-block-size H2_MAX_HEADER_BLOCK_SIZE
                        Maximum compressed HTTP/2 header block size in bytes
                        while collecting HEADERS and CONTINUATION frames. Use
                        0 for no limit. [env: H2CORN_H2_MAX_HEADER_BLOCK_SIZE]
                        (default: 1048576)
  --h2-max-inbound-frame-size H2_MAX_INBOUND_FRAME_SIZE
                        Maximum inbound HTTP/2 frame payload size to accept
                        and advertise via SETTINGS_MAX_FRAME_SIZE. [env:
                        H2CORN_H2_MAX_INBOUND_FRAME_SIZE] (default: 65536)
  --max-request-body-size MAX_REQUEST_BODY_SIZE
                        Maximum request body size in bytes. Use 0 for no
                        limit. [env: H2CORN_MAX_REQUEST_BODY_SIZE] (default:
                        1073741824)
  --timeout-handshake TIMEOUT_HANDSHAKE
                        Time limit to establish a connection/handshake
                        (seconds). [env: H2CORN_TIMEOUT_HANDSHAKE] (default:
                        5.0)
  --timeout-graceful-shutdown TIMEOUT_GRACEFUL_SHUTDOWN
                        Time allowed for workers to finish existing requests
                        on stop. [env: H2CORN_TIMEOUT_GRACEFUL_SHUTDOWN]
                        (default: 30.0)
  --timeout-keep-alive TIMEOUT_KEEP_ALIVE
                        Idle keep-alive timeout in seconds. Use 0 to disable.
                        [env: H2CORN_TIMEOUT_KEEP_ALIVE] (default: 120.0)
  --timeout-request-header TIMEOUT_REQUEST_HEADER
                        Idle timeout in seconds while reading an HTTP request
                        head or an HTTP/2 header block. Use 0 to disable.
                        [env: H2CORN_TIMEOUT_REQUEST_HEADER] (default: 10.0)
  --timeout-request-body-idle TIMEOUT_REQUEST_BODY_IDLE
                        Idle timeout in seconds while reading an HTTP request
                        body. Use 0 to disable. [env:
                        H2CORN_TIMEOUT_REQUEST_BODY_IDLE] (default: 60.0)
  --limit-concurrency LIMIT_CONCURRENCY
                        Maximum number of concurrent ASGI request/session
                        tasks per worker. Use 0 to disable. [env:
                        H2CORN_LIMIT_CONCURRENCY] (default: 0)
  --limit-connections LIMIT_CONNECTIONS
                        Maximum number of live client connections per worker.
                        Use 0 to disable. [env: H2CORN_LIMIT_CONNECTIONS]
                        (default: 0)
  --runtime-threads RUNTIME_THREADS
                        Number of Tokio runtime worker threads per worker
                        process. [env: H2CORN_RUNTIME_THREADS] (default: 2)
  --timeout-lifespan-startup TIMEOUT_LIFESPAN_STARTUP
                        Maximum time to wait for ASGI lifespan startup in
                        seconds. Use 0 to disable. [env:
                        H2CORN_TIMEOUT_LIFESPAN_STARTUP] (default: 60.0)
  --timeout-lifespan-shutdown TIMEOUT_LIFESPAN_SHUTDOWN
                        Maximum time to wait for ASGI lifespan shutdown in
                        seconds. Use 0 to disable. [env:
                        H2CORN_TIMEOUT_LIFESPAN_SHUTDOWN] (default: 30.0)
  --websocket-max-message-size WEBSOCKET_MAX_MESSAGE_SIZE
                        Maximum WebSocket message size in bytes. Defaults to
                        16 MiB. Use 'inherit' to follow
                        `max_request_body_size`, or 0 for no limit. [env:
                        H2CORN_WEBSOCKET_MAX_MESSAGE_SIZE] (default: 16777216)
  --websocket-per-message-deflate, --no-websocket-per-message-deflate
                        Whether to negotiate permessage-deflate for WebSockets
                        when the client offers it. [env:
                        H2CORN_WEBSOCKET_PER_MESSAGE_DEFLATE] (default: True)
  --websocket-ping-interval WEBSOCKET_PING_INTERVAL
                        Interval in seconds between server WebSocket ping
                        frames. Use 0 to disable. [env:
                        H2CORN_WEBSOCKET_PING_INTERVAL] (default: 60.0)
  --websocket-ping-timeout WEBSOCKET_PING_TIMEOUT
                        Time limit in seconds to wait for a pong after a
                        server WebSocket ping. Use 0 to disable. [env:
                        H2CORN_WEBSOCKET_PING_TIMEOUT] (default: 30.0)
  --proxy-headers, --no-proxy-headers
                        Trust proxy headers (e.g., Forwarded, X-Forwarded-*)
                        if the client IP is in `forwarded_allow_ips`. [env:
                        H2CORN_PROXY_HEADERS] (default: False)
  --forwarded-allow-ips FORWARDED_ALLOW_IPS
                        Allowed IPs or networks (in CIDR notation) for proxy
                        headers. Use '*' to trust all. [env:
                        H2CORN_FORWARDED_ALLOW_IPS] (default: ('127.0.0.1',
                        '::1', 'unix'))
  --proxy-protocol {off,v1,v2}
                        Expect HAProxy's PROXY protocol on inbound
                        connections. [env: H2CORN_PROXY_PROTOCOL] (default:
                        off)
  --server-header, --no-server-header
                        Whether h2corn should add a default Server header when
                        the application did not set one. [env:
                        H2CORN_SERVER_HEADER] (default: False)
  --date-header, --no-date-header
                        Whether h2corn should add a default Date header when
                        the application did not set one. [env:
                        H2CORN_DATE_HEADER] (default: True)
  --header HEADER       Additional default response headers in `name: value`
                        form. Repeat the flag to add more headers. [env:
                        H2CORN_RESPONSE_HEADERS] (default: ())

Benchmarks

The repository includes a local benchmark suite comparing h2corn, uvicorn, hypercorn, and gunicorn across baseline request handling, Unix socket transport, static files, streaming request and response paths, and WebSockets.

In the included local runs, h2corn leads across the tested scenarios. Hypercorn is the nearest mainstream comparison for this deployment model, and the included plots show h2corn ahead there as well.

HTTP/1 GET, 4 workers. h2corn 1.0.0: 89,886.99 RPS, p99 2.3 ms; uvicorn 0.43.0: 2,253.27 RPS, p99 48.3 ms; hypercorn 0.18.0: 13,856.44 RPS, p99 17.1 ms; gunicorn 25.3.0: 23,185.35 RPS, p99 7.1 ms.

Full benchmark set

HTTP/1 GET

HTTP/1 GET, 1 worker. h2corn 1.0.0: 26,661.18 RPS, p99 6.2 ms; uvicorn 0.43.0: 7,402.46 RPS, p99 13.7 ms; hypercorn 0.18.0: 3,771.02 RPS, p99 27.0 ms; gunicorn 25.3.0: 8,088.09 RPS, p99 12.5 ms.

HTTP/1 GET, 4 workers. h2corn 1.0.0: 89,886.99 RPS, p99 2.3 ms; uvicorn 0.43.0: 2,253.27 RPS, p99 48.3 ms; hypercorn 0.18.0: 13,856.44 RPS, p99 17.1 ms; gunicorn 25.3.0: 23,185.35 RPS, p99 7.1 ms.

HTTP/1 GET over Unix domain sockets (UDS)

HTTP/1 GET over UDS, 1 worker. h2corn 1.0.0: 29,439.59 RPS, p99 5.8 ms; uvicorn 0.43.0: 8,924.59 RPS, p99 11.3 ms; hypercorn 0.18.0: 4,065.69 RPS, p99 25.0 ms; gunicorn 25.3.0: 9,794.80 RPS, p99 10.5 ms.

HTTP/1 GET over UDS, 4 workers. h2corn 1.0.0: 93,916.47 RPS, p99 2.1 ms; uvicorn 0.43.0: 34,332.18 RPS, p99 4.5 ms; hypercorn 0.18.0: 15,141.46 RPS, p99 14.1 ms; gunicorn 25.3.0: 28,068.59 RPS, p99 5.9 ms.

HTTP/2 GET

HTTP/2 GET, 1 worker. h2corn 1.0.0: 26,972.50 RPS, p99 6.1 ms; hypercorn 0.18.0: 2,867.97 RPS, p99 36.7 ms.

HTTP/2 GET, 4 workers. h2corn 1.0.0: 82,114.27 RPS, p99 3.2 ms; hypercorn 0.18.0: 10,886.42 RPS, p99 16.8 ms.

HTTP/1 Static file

HTTP/1 static file, 1 worker. h2corn 1.0.0: 7,942.09 RPS, p99 18.5 ms; uvicorn 0.43.0: 1,651.12 RPS, p99 64.5 ms; hypercorn 0.18.0: 1,359.07 RPS, p99 80.9 ms; gunicorn 25.3.0: 1,687.18 RPS, p99 63.0 ms.

HTTP/1 static file, 4 workers. h2corn 1.0.0: 26,301.97 RPS, p99 7.6 ms; uvicorn 0.43.0: 6,694.54 RPS, p99 19.7 ms; hypercorn 0.18.0: 5,284.96 RPS, p99 42.3 ms; gunicorn 25.3.0: 6,902.89 RPS, p99 25.1 ms.

HTTP/2 Static file

HTTP/2 static file, 1 worker. h2corn 1.0.0: 5,027.66 RPS, p99 28.3 ms; hypercorn 0.18.0: 936.14 RPS, p99 113.0 ms.

HTTP/2 static file, 4 workers. h2corn 1.0.0: 16,571.47 RPS, p99 14.5 ms; hypercorn 0.18.0: 3,274.31 RPS, p99 38.0 ms.

HTTP/1 Streaming POST

HTTP/1 streaming POST, 1 worker. h2corn 1.0.0: 13,649.85 RPS, p99 96.4 ms; uvicorn 0.43.0: 3,723.76 RPS, p99 289.1 ms; hypercorn 0.18.0: 2,361.04 RPS, p99 442.9 ms; gunicorn 25.3.0: 4,004.47 RPS, p99 272.2 ms.

HTTP/1 streaming POST, 4 workers. h2corn 1.0.0: 37,539.49 RPS, p99 40.5 ms; uvicorn 0.43.0: 14,446.83 RPS, p99 110.2 ms; hypercorn 0.18.0: 9,504.84 RPS, p99 120.6 ms; gunicorn 25.3.0: 15,339.52 RPS, p99 91.1 ms.

HTTP/2 Streaming POST

HTTP/2 streaming POST, 1 worker. h2corn 1.0.0: 13,138.11 RPS, p99 99.8 ms; hypercorn 0.18.0: 1,727.79 RPS, p99 629.4 ms.

HTTP/2 streaming POST, 4 workers. h2corn 1.0.0: 38,112.57 RPS, p99 36.2 ms; hypercorn 0.18.0: 7,735.71 RPS, p99 181.3 ms.

HTTP/1 WebSocket

HTTP/1 WebSocket, 1 worker. h2corn 1.0.0: 7,102.55 RPS, p99 18.2 ms; uvicorn 0.43.0: 2,155.01 RPS, p99 49.0 ms; hypercorn 0.18.0: 2,224.88 RPS, p99 47.7 ms; gunicorn 25.3.0: 2,089.26 RPS, p99 50.3 ms.

HTTP/1 WebSocket, 4 workers. h2corn 1.0.0: 20,305.78 RPS, p99 8.8 ms; uvicorn 0.43.0: 7,708.00 RPS, p99 21.9 ms; hypercorn 0.18.0: 7,951.21 RPS, p99 21.2 ms; gunicorn 25.3.0: 7,796.02 RPS, p99 21.5 ms.

Support

Project support is available in the GitHub issue tracker.

If you need direct help with deployment, upgrades, or performance work in Python applications, premium support is also available through monicz.dev.

FAQ

Should I expose h2corn directly to the Internet?

No. Put a trusted reverse proxy in front of it. Let the proxy handle TLS, public-edge hardening, and browser-facing protocol negotiation.

Why prefer h2c behind a proxy?

Because it keeps the internal connection on a modern protocol instead of translating requests back down to HTTP/1.1 before they reach the application server. That removes a protocol-conversion boundary where HTTP/1.1 framing ambiguity and connection-reuse problems can reappear. The PortSwigger references above are a good starting point if you want the detailed background.

Why not HTTP/3?

HTTP/3 has real advantages, but they mostly matter at the edge rather than on the connection from the reverse proxy to the application server.

It runs over QUIC and therefore brings UDP and TLS into the picture. That is often worthwhile on the public side, where network conditions, handshake behavior, and connection migration matter. On a short trusted internal connection, the gains are usually smaller. In that role, h2c is simpler, and more widely supported.

Does this work on Windows?

Yes, but the full Unix-style worker supervisor does not. Windows runs in single-worker / in-process mode.

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

h2corn-1.1.0.tar.gz (436.2 kB view details)

Uploaded Source

Built Distributions

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

h2corn-1.1.0-pp311-pypy311_pp73-win_amd64.whl (757.9 kB view details)

Uploaded PyPyWindows x86-64

h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (998.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (960.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl (912.7 kB view details)

Uploaded PyPymacOS 11.0+ x86-64

h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (846.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

h2corn-1.1.0-cp314-cp314t-win_amd64.whl (747.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

h2corn-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

h2corn-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

h2corn-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl (973.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

h2corn-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl (954.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

h2corn-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl (939.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ x86-64

h2corn-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (838.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

h2corn-1.1.0-cp314-cp314-win_amd64.whl (755.4 kB view details)

Uploaded CPython 3.14Windows x86-64

h2corn-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

h2corn-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

h2corn-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (976.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

h2corn-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl (960.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

h2corn-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl (942.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ x86-64

h2corn-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (842.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

h2corn-1.1.0-cp313-cp313t-win_amd64.whl (752.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

h2corn-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

h2corn-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

h2corn-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl (977.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

h2corn-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl (959.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

h2corn-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl (938.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ x86-64

h2corn-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl (838.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

h2corn-1.1.0-cp313-cp313-win_amd64.whl (759.0 kB view details)

Uploaded CPython 3.13Windows x86-64

h2corn-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

h2corn-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

h2corn-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (980.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

h2corn-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (963.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

h2corn-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl (942.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

h2corn-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (842.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

h2corn-1.1.0-cp312-cp312-win_amd64.whl (757.6 kB view details)

Uploaded CPython 3.12Windows x86-64

h2corn-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

h2corn-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

h2corn-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (979.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

h2corn-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (962.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

h2corn-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl (940.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

h2corn-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (841.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

h2corn-1.1.0-cp311-cp311-win_amd64.whl (757.1 kB view details)

Uploaded CPython 3.11Windows x86-64

h2corn-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

h2corn-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

h2corn-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (997.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

h2corn-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (959.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

h2corn-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl (911.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

h2corn-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (846.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file h2corn-1.1.0.tar.gz.

File metadata

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

File hashes

Hashes for h2corn-1.1.0.tar.gz
Algorithm Hash digest
SHA256 0d7832230c99f9196af732079dfe6003520a8c89fca260b8587511b10c2b8d21
MD5 38858ddf41bf926409775a7903be8580
BLAKE2b-256 a4ed2c84cb7b4ccde78c67611e6cce187dec58e121db0fe5e0deb3cf5344876d

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0.tar.gz:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f9867f3a01d24015385924185992ae136b20cde67d7f0839dc03c7ff698f41f2
MD5 fbdc36b6db938aa36a4c8323ddf28a1c
BLAKE2b-256 615524f92a7c40c28c1e3742ea4a6cf1aeb7c8a2a255c0bddc1db017ca620bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e41a63989f3b37378f76b3b0687835d24132b8df7acbe0d04b2532fa6b54db31
MD5 37ba5fa129376c8b59e1140729296d51
BLAKE2b-256 33aa4845d210b4c99a64a1ba5e18fe250eeead57035c16996a42e3cd4be8320a

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db1e080af4926d49dfe856788dd830a813eaf432b7442401277351d93bce032b
MD5 ceaf65f5b9d567b4b964f01ebbbe7413
BLAKE2b-256 48e1a5ea768464fa4d0780950ec961ece2e2634ef64a0690e4c804e1b620cf89

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 78e0ad7cd07cea7240a943fd4a81538837216014bb66424ebf807da76056ca38
MD5 ba780801e30d9b9d29522df1f0bbd0d9
BLAKE2b-256 f40a891885851e9a772cf997c61a38d40981a08c2c9c5692e8eec91817636369

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50438e412bcef93429d567263c702f3fc9b79e70974a36c2ffe5e1d013d8ecf5
MD5 c2ff937342d8848c1b6d3fef1187b8b4
BLAKE2b-256 56adc86660041c11fb6098a6a0bc9b40e4cfe2df07659736ffbca3311a551123

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: h2corn-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 747.0 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 h2corn-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 38603179a25be027817d568c15d14ba8f6930b0538f0cff541c49ae337227c59
MD5 635ef5d90d6784e9bd60ed6db1c77be2
BLAKE2b-256 64847806e5ab79ae5a4d812f2cce4d85a25c133310747046a0be62e2e942b9bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a6280bd6b41fe68126380bc98cd0390d8f13e4757938556ca343fb36c9b360a
MD5 1bf6eb887714857b690c55713f35bcf4
BLAKE2b-256 2ec1e62bbdf9647d4ad1138530c70eec4d170e3c74629f8fbb36c253e7faf0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0351b5f20589a3a7b6fe24cff70fd08165647c3f9e9f9ed4f6a7e2f885c78b25
MD5 2b1e84f2e59f94060299dc847993505b
BLAKE2b-256 c7524066c40bfdaa06f00f3f2e323282b34cabc523a1eb4297966c880355aee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 610300b7a9d71d8b07a6caead612fe6beab85088eab04c83939802be631886b3
MD5 0dc7968221fc32b3fce09f8c61f55927
BLAKE2b-256 ed873cca55f2dcefa49a10589f983eb7e433011d4dccf966ac199fb610822239

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ad78dac9dddbdf35b74604769b2198f8d8ebac14b25098aa1cfa275a19d4a26
MD5 228c359019d496198c614a252b4c0369
BLAKE2b-256 3e8c994fa982aa09c94e7857a63138bbb24696baa1ddd91327d7d2be72e8b0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 96691dc2ddcbdd898fe86c4d0c897b13cdb4a4d962ba6f2614d2ab812dc81bc2
MD5 2c451eea90af91364eac6b4fae62cc56
BLAKE2b-256 0bc75465265818d69187d78aa4cdb390ff2ddefb9b2912cbbdea6a3d08d507c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e675b74aa1993739bbe95afd8a87e1f1f72406665ce1499a51f695ef1fcf420
MD5 3502e9ca94bea82b5ef23853d3f744c4
BLAKE2b-256 1cb9e99695135061903807ec5afea56aa68833fa89153bda0d7c9827e33f8be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: h2corn-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 755.4 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 h2corn-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0cd20c1d4e298ae1ec3750a6301c7d3272f29f77363fc37756127711d785fee0
MD5 37316674c1e6f4327161168ad0ab0d6b
BLAKE2b-256 8210216b4ff5993dac5e18c3daeb031ac9fb6139bb1e7f5dfdda1ae08ee90c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85c2c699b8c4d44b01de1ea124a9569f11c4767f9b9c90dc58f799df950c5306
MD5 cc5d688e2bf6e286dc39dff717876739
BLAKE2b-256 2e2343e5e5d7275d047c51f543c1474668d7746ab69341947ca3e9e799821200

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93a8d5aa2452b22516fb44be8a725cac71b45936930e7e1256fbe4fcc83e4a78
MD5 84b0ad0cb5d9d4746798ce4e9870f09a
BLAKE2b-256 93f063e541650eea6b823fb0c056b29e3e7b05f8bc773ac96bfdb2bc0febd752

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cab5953c4fc3b314d3b8cb473c9d82b3db3ef1d66f6e4b12df1e46918cb9c28
MD5 e0525a5b0a86ccb2398e424fefaaf9e6
BLAKE2b-256 00408a92f5bca9bfbc0a7154dab2178b0ad7c1f586dd8b8c8c0eefc56c12610f

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6c5bff1dd71c5943b28a48721f02ca5677ce1a4cdb90ba1e46936a71d674093
MD5 56d67706e994be0d6bd93ae98518f312
BLAKE2b-256 334c69d6442e7268844870bcf66c84389898281421d261e50f228ddab3a64996

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 abf9b37b2be63280b429838f5b0fdad7ddb3e9235ed62dd9a0196680b7aa66f0
MD5 b37aee2910eca741015fe039f9e16e4e
BLAKE2b-256 b41a78f6fbcea8d17cae3d07a622bfece40623178cc5c31f69fe0871e2c20bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 004723a83b54cd2ff050a4613ce51489349e01442e99ba807bb1ce2abcd008f1
MD5 9e1745b2c9a1c88cb26561a1f56b3afd
BLAKE2b-256 b56e0dc0f3b72b14efd56d494bb3ee2804dca790ee5b5a8397badd5718002194

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: h2corn-1.1.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 752.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 651963aee1909678b7d656e1b39c6d18c00e236cd9857476fabef4d235dee93e
MD5 efc1835230c005025363ed39aba42b3a
BLAKE2b-256 f78c4896c5d20c24eb4f2734183ffd0f1856582c339044e36951d1b0384b963e

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df35a2e3f1307afb336731ce1a34e51cf97b9358db749576d324912f765f6fe5
MD5 19f66888b4752a373195e9716c6a50de
BLAKE2b-256 60e08f841a854594be5ae63b07bb07a431217efbb94f917d8e30fb76080a2fff

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09635e54c3bb4c1859f539a2ab9f285999ee73710a553c16882496a197e46bd2
MD5 b684795b23d5fb5fcb14cf186ad5e2f4
BLAKE2b-256 60c61f1cce16e0c069b489b744023f67505523ed15a30524ca672cf66082a1cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 570d1f07b9fecf479d4741c75730daea235de16a0b2a0164f17043c47f93fc08
MD5 a0daa32248efc78d67378c5679c5e9fa
BLAKE2b-256 a7cd39178feae23158adbd1a6450dd157a734005a0e07477204f8d23593c898b

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de4a9072bf90322413755dcd65661fb9927e04c8faccb214fca55e275bf29cd5
MD5 089d4767dd563adfc72f24ffe1bdf50e
BLAKE2b-256 15e78ece46df46a2fd645d2eaac9c50e9ec6dc7ead72eca88f601843931c251f

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b785a7d5fd14358fb2c920f39f5d7e69bd1258732b7c27346c7448879b86c9aa
MD5 be0a1571d8854716343a6aaed71473fd
BLAKE2b-256 09071c9fece0417f3c3f1c5a96d0529f1896a0b08dde821a3216fe7707bba172

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f9c0108092f17b71e3ff768a674624f1a73fb7e50d9b10166761ba274449fa6
MD5 abdf9cdb14ab153c5a60747780c815b2
BLAKE2b-256 e9d92635b5d488f972acabd57a1d90531ad7544919a408940ad7b797f236f10a

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4dc8c50d34e9c17ead2f3588eee6bb7bb4aa5aad9eacbd87fd2f6a9e5803369
MD5 46129acf4cb718caf16dd1512390b13d
BLAKE2b-256 5784e5be3da595fdb1bae2ee4152d09e80bc13b1894e8bf2dd0d7344606be0bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50620b26c4e899fb3d097ccce8f201ad6ae4eb9dfe69d0e159a0d7339cf22011
MD5 1db745de63358aa5e2b14ee134bc659d
BLAKE2b-256 bc27892020db7870c6d1d8cc92d8836a48e413b423ecc5e9d0fbbf7245f28177

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a39924bd7f635e09ca9cfd4ce6137318f25e366cd2da374cac910cf2d6fbb60e
MD5 88331c5348de8974b548cab11c735a7f
BLAKE2b-256 dcb7b1a0664cf3ecda0934b62ff6c2be58b558dbc767cca446dc5fb722c69708

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e63a7da42c7a70067dd0af987b1809c2d9716811ec6824342a7f84b3c429bd1
MD5 734e3c07add99bae2a23bf3070dc8885
BLAKE2b-256 0e0fe74ffff2ce9749a3d92d35086f564e307858ee24d0cd807c0f6c772633d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 722fd9db3d44d28fa6146a023bec92053873c7ac73c45d9b0770c676fdcecc04
MD5 6a5fddcebb638d9084383803154ff505
BLAKE2b-256 adea56dd8f2d4409fa9acb8b2487afc823ca1c487a19ad408327c55b5841f70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b10af64d64c26b43ab78ac5b7db3e0d69b4a94f6042384730b8e8995bed7a0ef
MD5 7be6929f703d2a61fe9417c997675edf
BLAKE2b-256 d9b112568885bc16d1ce8bfa93f957af029dd24f52a0d7f702a0a007746fb183

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70d4a9e93ec257eb6f55df6b850c80e6a0d87fe590b8570bef15cc9f6411e434
MD5 151aefcd186653fbe8442c8439327d96
BLAKE2b-256 2c8cb3d55c71058c4f025ace1ac4a7562bb128583b1d8185272befd5cc24eddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: h2corn-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 757.6 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 h2corn-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7d703fee9a7fd8abc5a7bafeae7cbbff924edd4a7732b9fd0d037628e8d4a668
MD5 b13b9750cb53f879b4897a1953a6b9c4
BLAKE2b-256 007c33497c3fa41f4451a591abcd95d5198dc0247cb66856177c0fe3c294d003

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ba1d6d70dda84e14e6a106533141b3bd134e81727ebfb0a429ea95ea952fe0d
MD5 6072b648940458925fcf2298b365e721
BLAKE2b-256 9514008e2811292d7a23287abdc867bf547bca82ecc888332656c554779a6ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0312e2e2920c96c19775bac0e26b99c83dcc46904719617ebb46ef913f8aafb
MD5 2916246e13bbddde394bc5586810b037
BLAKE2b-256 96d57c90ae2e0de69fa177e56a8764b0995d1909a9b1c9fa61bc47cc489aa262

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a3f5f3db66621bbda63959d461ae1bdc136ac0cfe8460b1b02035bdfdefeaa3
MD5 9e93a0335831cf174bd97fd7f6036145
BLAKE2b-256 5ec433eac0b1a5244845c670b1893e2edcffdace6261513fc5af6fe0749a7b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04de5ba4130a65258e4bbff761b46dd4fc5bcc37259e65b7f44ef3e24c43bb7a
MD5 7ad2881af2991ad4a27154a5eb9dfddc
BLAKE2b-256 3cf4a794849a71ae7cd9ce54800e0af6eca74864844553283c5075ca5dc1b70c

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 428a0e2d4528493bf1246a8555f8e4faa1a071269b012185812e5919f239cadd
MD5 4244831d2681d8b9fff0d4c76de63f01
BLAKE2b-256 4f09fc2972244043ebac1fdecead1d9e9c4a909328653f6aaea2806609449f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b61f956621510a14f9c8539147c66ac2656368d56e2662c2fe00bc06ac2072a
MD5 0f0c1623b7808381a92da2294c965406
BLAKE2b-256 cbff0edc9099bef09fe698bfb76c0e298da58afdd3946c6759ca0bc4ae77f4c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: h2corn-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 757.1 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 h2corn-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3d4b777c3355745bf2717890862e8ad4226bf2795ece71727293ca6f0deae445
MD5 b77add07327259f4ec6a18b5d8e8ef40
BLAKE2b-256 fc459728bab6dbb0f384a914704f9530f7504ebfc28c6c535642b469a5fefb44

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17ddb5816966b5c45272c02b9d5da7f1244280a037ab6b9c31b2d7fceb9f74b4
MD5 b9061174661c7e6f0a71f6e40cff7492
BLAKE2b-256 c531c87521cac0f33a6b0c7cca87bbe96fdb9371d09ab91930d53dd69316e19d

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbc532994a02d4945c6c855610ea87a1484b258e27767134df81109312348e80
MD5 02b42ddb50b65132cc74685807a55c59
BLAKE2b-256 850a1dfea7c71a107be1e4ab004203c83d753ff721f8629e2dfc9220aa5f6f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 495eb59918466f5dc4b8e9a30b709621c8592bb2a8ddb0a48cb4212036b22cdf
MD5 e7345f5919f2228d2d6cd35fc6f02d2e
BLAKE2b-256 1986d3acaba199ae7c7ea8d7410e724340b479bec24c341fb291a70945dbeb4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d1d17f1c2744935c76d51c183a3c270034f13cac203e8779c4a0c3646d5bbd4
MD5 4c10e0357f494b971dd3553fc32a264f
BLAKE2b-256 6ec2e40b80d4b7a9e3b4c0dfc4ed0b867612743aa7ce10e9f18280ed734a3028

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0e398e6c09cb4ae6b4e0403b1f546eeae41a2fecc9ab857edb6c269f0a994beb
MD5 1ded49c1f4f0d702056165210d6d7931
BLAKE2b-256 afb69c7eee4987fcc6e6adc2fa9960fc94b7e1d9f93ed5a3bd5a426645a2bf86

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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

File details

Details for the file h2corn-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for h2corn-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 169146408ffbc7a688226d5e82e399039e9e43517cc08443f4bd4461dbf73664
MD5 9d380b7c978aa357de46bd94c432479f
BLAKE2b-256 72139a8917ca43e0e274d5257f058e9e087acd10dbd854ae8277424c379d3fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for h2corn-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yaml on Zaczero/pkgs

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