hyper-up
HTTP/2 Client for Python
What it is and what it does
hyper-up is an HTTP/2 client library that brings HTTP/2 protocol support to Python applications. It provides a drop-in alternative to http.client with a similar API, allowing developers to make HTTP/2 requests without rewriting their connection logic. The library handles HTTP/2-specific features like improved speed, lower bandwidth usage, and better connection management.
The package depends on h2, hyperframe, pyOpenSSL, service_identity, and cryptography for protocol framing, TLS negotiation, and certificate handling. It supports both HTTP/1.1 and HTTP/2 with automatic protocol negotiation, thread-safe connections via stream IDs, and ALPN/NPN negotiation. However, the package is in alpha status with a last release 456 days ago, indicating limited active development.
Use it for:
- Building HTTP/2 clients for servers that support the protocol to benefit from improved speed and lower bandwidth usage
- Migrating from http.client to HTTP/2 without major API rewrites using the similar HTTPConnection interface
- Establishing thread-safe concurrent HTTP/2 connections using stream IDs for multiplexing
- Testing HTTP/2 protocol support in applications with the built-in CLI tool
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
HTTP/2 client library for Python that provides an alternative to http.client with HTTP/2 protocol support and a similar API.
No—not for new projects. The package is in alpha status with 456 days since last release, indicating stalled maintenance. The high install friction combined with aging status and lack of recent updates makes it a poor choice. Only consider if you have existing code already using hyper-up and cannot migrate.
Install
hyper-up on PyPI
pip
pip install hyper-upuv
uv add hyper-uppoetry
poetry add hyper-upInstalling hyper-up
Before you install
High install friction due to five runtime dependencies including cryptography, pyOpenSSL, h2, hyperframe, and service_identity. Package status is aging—last release was 456 days ago—marked as alpha, suggesting limited active maintenance.
License in practice
MIT License permits commercial and private use with minimal restrictions, making it legally straightforward to adopt in most projects.
Quickstart
pip install hyper-up
from hyper import HTTPConnection
conn = HTTPConnection('http2bin.org:443')
conn.request('GET', '/get')
resp = conn.get_response()
print(resp.read())
Requires pyOpenSSL and cryptography for TLS support; system SSL libraries may be needed for compilation.
Verify before relying
- Current HTTP/2 server compatibility and which servers support the protocol version implemented
- Whether the alpha status and aging maintenance pose practical risks for production use
- Performance characteristics and stability compared to alternatives
Package facts
| License | MIT License (permissive) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | 5 — h2, hyperframe, pyOpenSSL, service_identity, cryptography |
| Maintenance | aging — 456 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 103,308/month — #12,815 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: hyper_up-0.9.0.tar.gz
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
hyperhyper is an HTTP/2 client library for Python…
permissive · top 15,000 on PyPI
hyperframehyperframe decodes binary HTTP/2 frame streams…
permissive · top 1,000 on PyPI
hpackEncodes and decodes HTTP/2 headers using the…
permissive · top 1,000 on PyPI
jh2jh2 is a pure-Python HTTP/2 protocol state…
permissive · top 5,000 on PyPI
h2h2 is a pure-Python HTTP/2 protocol…
permissive · top 1,000 on PyPI
ndg-httpsclientProvides enhanced HTTPS support for Python's…
permissive · top 5,000 on PyPI
HypercornHypercorn is an ASGI and WSGI web server…
permissive · top 5,000 on PyPI
geventhttpclientA concurrent HTTP client for gevent that…
permissive · top 5,000 on PyPI
requests-unixsocket2Extends the requests library to make HTTP calls…
permissive · top 15,000 on PyPI