Skip to main content

Yet another ASGI server implementation.

Project description

build status coverage security: bandit Code style: black pypi Python Versions Downloads License forks

Asgiri

A high-performance ASGI server implementation supporting HTTP/1.1, HTTP/2, and HTTP/3 protocols with automatic protocol detection and seamless switching.

⚠️ Early Stage Project
Asgiri is a relatively new project and has not been extensively tested in production environments. While we strive for stability and correctness, we recommend thorough testing in your specific use case before deploying to production. Contributions, bug reports, and feedback are highly appreciated as we work toward production readiness.

See PROJECT_STATUS.md

Features

  • Multi-Protocol Support: Handles HTTP/1.1, HTTP/2, and HTTP/3 on the same port
  • HTTP/3 (QUIC): Modern UDP-based protocol for improved performance over lossy networks
  • Auto-Detection: Automatically detects client protocol preference
  • Dual Transport: Runs TCP and UDP servers simultaneously for comprehensive protocol coverage
  • Protocol Advertisement: Advertises HTTP/2 and HTTP/3 capability via Alt-Svc headers
  • WebSocket Support: WebSocket protocol over HTTP/1.1 and HTTP/2
  • ASGI 3.0 Compatible: Works with any ASGI 3.0 application
  • Async/Await: Built on Python's asyncio for high concurrency
  • Multiprocessing: Run multiple worker processes with SO_REUSEPORT for better CPU utilization

Lore

Deep in the hills of Kandy, Sri Lanka, stands the Asgiri Maha Viharaya — a sacred monastery that has been a beacon of wisdom and preservation for centuries. As the headquarters of the Asgiriya Chapter of Siyam Nikaya, this ancient temple holds the solemn duty of safeguarding one of Buddhism's most precious relics: the sacred tooth relic of Buddha.

Just as the monastery has faithfully served countless pilgrims across the ages, handling their requests with grace and precision, so too does this server aim to serve your web traffic. Like the monks who maintain both ancient traditions (the sacred tooth relic) and adapt to modern times, Asgiri the server bridges the old (HTTP/1.1), the new (HTTP/2), and the cutting edge (HTTP/3), automatically detecting which protocol each client speaks and responding with wisdom.

The name asgiri reminds us that good software, like good monasteries, should be:

  • Reliable — Standing strong through the centuries
  • Adaptable — Serving all who come, regardless of their background
  • Efficient — Handling many requests with minimal resources
  • Graceful — Switching protocols as smoothly as monks switch between prayer and teaching

May your servers run as peacefully as the chants in Asgiri's halls. 🙏

Quick Start

from asgiri.server import Server

async def app(scope, receive, send):
    await send({
        "type": "http.response.start",
        "status": 200,
        "headers": [(b"content-type", b"text/plain")],
    })
    await send({
        "type": "http.response.body",
        "body": b"Hello, World!",
    })

server = Server(app=app, host="127.0.0.1", port=8000)
server.run()

Protocol Support

Auto-Detection (Default)

By default, the server automatically detects whether the client is using HTTP/1.1, HTTP/2, or HTTP/3:

server = Server(app=app, host="127.0.0.1", port=8443, certfile="cert.pem", keyfile="key.pem")
# Automatically handles HTTP/1.1, HTTP/2 (TCP), and HTTP/3 (UDP)

Explicit Protocol Selection

You can force a specific protocol if needed:

from asgiri.server import HttpProtocolVersion

# HTTP/1.1 only
server = Server(app=app, http_version=HttpProtocolVersion.HTTP_1_1)

# HTTP/2 only
server = Server(app=app, http_version=HttpProtocolVersion.HTTP_2)

# HTTP/3 only (requires TLS)
server = Server(
    app=app, 
    http_version=HttpProtocolVersion.HTTP_3,
    certfile="cert.pem",
    keyfile="key.pem"
)

# Auto-detection (explicit)
server = Server(app=app, http_version=HttpProtocolVersion.AUTO)

HTTP/3 Configuration

HTTP/3 requires TLS certificates:

from asgiri.server import Server

server = Server(
    app=app,
    host="0.0.0.0",
    port=8443,
    certfile="cert.pem",
    keyfile="key.pem",
    enable_http3=True,  # Enable HTTP/3 (default: True)
)

Multiprocessing with Multiple Workers

Run multiple worker processes using SO_REUSEPORT to share the same port:

⚠️ Important: HTTP/3 is not compatible with multi-worker mode due to UDP socket sharing limitations. When using reuse_port=True or --workers > 1, HTTP/3 will be automatically disabled. For HTTP/3 load balancing, use a reverse proxy like nginx or HAProxy.

# Single worker (default)
python -m asgiri --workers 1 myapp:app

# Multiple workers (e.g., 4 workers) - HTTP/3 automatically disabled
python -m asgiri --workers 4 myapp:app

# Auto-detect CPU count
python -m asgiri --workers auto myapp:app

Or programmatically:

from asgiri.server import Server
from asgiri.multiprocessing_workers import spawn_workers

def create_server():
    server = Server(
        app=app,
        host="0.0.0.0",
        port=8000,
        reuse_port=True,  # Required for multiprocessing - HTTP/3 disabled
    )
    server.run()

# Run with 4 workers
spawn_workers(4, create_server)

Note: When using multiple workers (workers > 1), SO_REUSEPORT is automatically enabled. This allows multiple processes to bind to the same port, with the kernel load-balancing incoming connections across workers.

How It Works

The server uses a smart dual-transport architecture with protocol detection:

TCP Server (HTTP/1.1 and HTTP/2)

ASGIRI supports multiple methods for HTTP/2 negotiation:

  1. ALPN (Application-Layer Protocol Negotiation): The standard TLS extension for HTTP/2 negotiation

    • During TLS handshake, client and server negotiate protocol (h2 for HTTP/2, http/1.1 for HTTP/1.1)
    • Recommended for production use with HTTPS
    • Automatically enabled when TLS certificates are provided
  2. HTTP/2 Prior Knowledge: Direct HTTP/2 connection without negotiation

    • Client sends HTTP/2 connection preface (PRI * HTTP/2.0...)
    • Useful for testing and HTTP/2-only environments
    • Test with: curl --http2-prior-knowledge http://localhost:8000/
  3. HTTP/1.1 Upgrade: Upgrades from HTTP/1.1 to HTTP/2 mid-connection

    • Client sends Upgrade: h2c header (h2c = HTTP/2 cleartext)
    • Fallback method for non-TLS scenarios
  4. HTTP/1.1 Fallback: Falls back to HTTP/1.1 for standard HTTP requests

  5. Advertisement: Automatically adds Alt-Svc headers to advertise HTTP/2 and HTTP/3 capability

UDP Server (HTTP/3)

  1. QUIC Protocol: Handles HTTP/3 over QUIC (UDP-based transport)
  2. TLS Integration: Built-in TLS 1.3 encryption (mandatory for HTTP/3)
  3. Multiplexing: True stream independence without head-of-line blocking

For more details, see:

Testing

# Test HTTP/1.1
curl -v http://localhost:8000/

# Test HTTP/2 (with prior knowledge)
curl --http2-prior-knowledge http://localhost:8000/

# Test HTTP/3 (requires curl with HTTP/3 support)
curl --http3 https://localhost:8443/ -k

Documentation

Want to learn more? Browse our documentation:

License

MIT

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

asgiri-0.1.1.tar.gz (222.9 kB view details)

Uploaded Source

Built Distribution

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

asgiri-0.1.1-py3-none-any.whl (50.5 kB view details)

Uploaded Python 3

File details

Details for the file asgiri-0.1.1.tar.gz.

File metadata

  • Download URL: asgiri-0.1.1.tar.gz
  • Upload date:
  • Size: 222.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for asgiri-0.1.1.tar.gz
Algorithm Hash digest
SHA256 bf5b1d55c7c3b0a9fc6cee6ce7cfc4513219e4120dbe2c8852e71e053a3015bc
MD5 644bf14e1c0268483bb7cc0e94b095cb
BLAKE2b-256 8d505816d5e9949fb2834fe8507d06a2b49d6de52e65a8f3c1109907230d5730

See more details on using hashes here.

File details

Details for the file asgiri-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: asgiri-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 50.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for asgiri-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 62df8dc749cc7338418116b46a0138cf55bc424983553b27d8383e1cbe93dbe5
MD5 949db928254d0ac0db9bf3521b084a6a
BLAKE2b-256 c7260318bec32662cc47e9d5cfaa34613de1624aa45fa52a3d80736f97a40770

See more details on using hashes here.

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