The canonical, async-native WebTransport stack for Python.
Project description
PyWebTransport
The canonical, async-native WebTransport stack for Python.
Features
- Full Async Support: Built from the ground up on asyncio for high-performance, non-blocking I/O.
- High-Level Frameworks: Includes a ServerApp with routing and middleware, and a versatile WebTransportClient with helpers for pooling, auto-reconnection, and proxying.
- Complete Protocol Implementation: Full support for bidirectional and unidirectional streams, as well as unreliable datagrams.
- Structured Messaging: Pluggable JSON, MsgPack, and Protobuf serializers for sending and receiving structured data objects over streams and datagrams.
- Lifecycle and Resource Management: Robust, async context-managed components for handling connections, sessions, streams, and monitoring.
- Event-Driven Architecture: A powerful EventEmitter and EventBus system for decoupled, asynchronous communication between components.
- Type-Safe and Tested: A fully type-annotated API with extensive test coverage (unit, integration, E2E) to ensure reliability and maintainability.
Installation
pip install pywebtransport
For more detailed instructions, including virtual environments and platform-specific notes, see the Installation Guide.
Quick Start
Server
# server.py
import asyncio
from pywebtransport import ServerApp, ServerConfig, WebTransportSession, WebTransportStream
from pywebtransport.exceptions import ConnectionError, SessionError
from pywebtransport.utils import generate_self_signed_cert
generate_self_signed_cert(hostname="localhost")
app = ServerApp(
config=ServerConfig.create(
certfile="localhost.crt",
keyfile="localhost.key",
)
)
async def handle_datagrams(session: WebTransportSession) -> None:
try:
datagrams = await session.datagrams
while True:
data = await datagrams.receive()
await datagrams.send(data=b"ECHO: " + data)
except (ConnectionError, SessionError, asyncio.CancelledError):
pass
async def handle_streams(session: WebTransportSession) -> None:
try:
async for stream in session.incoming_streams():
if isinstance(stream, WebTransportStream):
data = await stream.read_all()
await stream.write_all(data=b"ECHO: " + data)
except (ConnectionError, SessionError, asyncio.CancelledError):
pass
@app.route(path="/")
async def echo_handler(session: WebTransportSession) -> None:
datagram_task = asyncio.create_task(handle_datagrams(session))
stream_task = asyncio.create_task(handle_streams(session))
try:
await session.wait_closed()
finally:
datagram_task.cancel()
stream_task.cancel()
if __name__ == "__main__":
app.run(host="127.0.0.1", port=4433)
Client
# client.py
import asyncio
import ssl
from pywebtransport import ClientConfig, WebTransportClient
async def main() -> None:
config = ClientConfig.create(verify_mode=ssl.CERT_NONE)
async with WebTransportClient(config=config) as client:
session = await client.connect(url="https://127.0.0.1:4433/")
print("Connection established. Testing datagrams...")
datagrams = await session.datagrams
await datagrams.send(data=b"Hello, Datagram!")
response = await datagrams.receive()
print(f"Datagram echo: {response!r}\n")
print("Testing streams...")
stream = await session.create_bidirectional_stream()
await stream.write_all(data=b"Hello, Stream!")
response = await stream.read_all()
print(f"Stream echo: {response!r}")
await session.close()
if __name__ == "__main__":
try:
asyncio.run(main())
except KeyboardInterrupt:
pass
Documentation
- Installation Guide - In-depth setup and installation guide.
- Quick Start - A 5-minute tutorial to get started.
- API Reference - Complete API documentation.
Requirements
- Python 3.11+
- asyncio support
- TLS 1.3
Dependencies:
- aioquic >= 1.2.0
- cryptography >= 45.0.4
Contributing
Contributions are welcome! Please read our Contributing Guide for details on the development setup, testing, and pull request process.
Development Setup:
git clone https://github.com/lemonsterfy/pywebtransport.git
cd pywebtransport
pip install -r dev-requirements.txt
pip install -e .
tox
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- aioquic for the underlying QUIC protocol implementation.
- WebTransport Working Group for standardizing the protocol.
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Email: lemonsterfy@gmail.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pywebtransport-0.5.0.tar.gz.
File metadata
- Download URL: pywebtransport-0.5.0.tar.gz
- Upload date:
- Size: 107.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa30374009e14c35956fc18f8702b01c9326c1ce958ca27136a5cba201470b2e
|
|
| MD5 |
19cee69b5cda7a76d57b1db14527f16f
|
|
| BLAKE2b-256 |
18103c0ca68511383507ba1e1cb43b0b1575b85ef7c2cf550cb80f4e5d4fbdd7
|
File details
Details for the file pywebtransport-0.5.0-py3-none-any.whl.
File metadata
- Download URL: pywebtransport-0.5.0-py3-none-any.whl
- Upload date:
- Size: 134.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5f81efcd2a3118d2dee29880a4cffec3237fad00499aa346d652a2d24605fd1
|
|
| MD5 |
0e0a96b7b4cd76fb1a4a71785ea9b8a5
|
|
| BLAKE2b-256 |
9f8893cabf1999f6ffd844c77be947b9a0d9d044534af4096dfe1970c954c378
|