Canonical ASGI adapter for PondSocket.
Project description
pondsocket-asgi
Canonical ASGI adapter for pondsocket. Mount under any ASGI host — FastAPI, Starlette, Litestar, Django, raw uvicorn.
Handles WebSocket and SSE (Server-Sent Events) transports. The same PondSocket instance serves both — the adapter detects the request type and dispatches.
Install
pip install pondsocket-asgi
Pulls in pondsocket and pondsocket-common automatically.
Quick start: raw uvicorn
from pondsocket import ConnectionContext, EventContext, JoinContext, PondSocket
from pondsocket_asgi import PondASGIApp
async def auth(ctx: ConnectionContext) -> None:
ctx.accept()
async def on_join(ctx: JoinContext) -> None:
await ctx.accept()
async def on_message(ctx: EventContext) -> None:
await ctx.broadcast(ctx.event_name, ctx.get_payload())
pond = PondSocket()
endpoint = pond.create_endpoint("/socket", auth)
lobby = endpoint.create_channel("/chat/:room_id", on_join)
lobby.on_message("message", on_message)
app = PondASGIApp(pond)
uvicorn module:app --host 127.0.0.1 --port 8000
WebSocket clients connect to ws://127.0.0.1:8000/socket.
Mount under FastAPI
from fastapi import FastAPI
from pondsocket_asgi import PondASGIApp
app = FastAPI()
app.mount("/ws", PondASGIApp(pond))
When mounted at /ws, the adapter sees scope["path"] already stripped of the prefix — register your pond endpoints with the post-mount path (e.g. /socket resolves at ws://host/ws/socket).
See examples/ for FastAPI, Starlette, and raw uvicorn variants.
SSE transport
The same endpoint serves Server-Sent Events to clients that don't have WebSocket:
GET /socket
Accept: text/event-stream
→ 200, response carries X-Connection-ID header and a `CONNECTION` event with `payload.connectionId`, stream of "event: <name>\ndata: <json>\n\n" frames
POST /socket
X-Connection-ID: <id>
Content-Type: application/json
body: <client message JSON>
→ 204
DELETE /socket
X-Connection-ID: <id>
→ 204
Use SSE when WebSocket is blocked (some corporate proxies). The connection handler is the same — the adapter routes by Accept header and method.
Lifespan
PondASGIApp handles the ASGI lifespan protocol. On lifespan.startup, it acknowledges immediately. On lifespan.shutdown, it closes the PondSocket (which closes every endpoint, every channel, every transport).
Testing
pondsocket_asgi.testing exposes an in-memory ASGI driver — no real network needed:
from pondsocket_asgi.testing import ASGITestDriver
driver = ASGITestDriver(PondASGIApp(pond))
# WebSocket
session = await driver.connect_websocket("/socket")
await session.send_client_message(
action="JOIN_CHANNEL",
channel_name="/chat/1",
event="join",
)
ack = await session.receive_json()
await session.disconnect()
# SSE
sse = await driver.connect_sse("/socket")
status, _ = await driver.sse_push(sse.connection_id, {"action": "BROADCAST", ...})
frame = await sse.receive_event()
await sse.disconnect()
# Lifespan
lifespan = await driver.open_lifespan()
await lifespan.startup()
await lifespan.shutdown()
Public API
from pondsocket_asgi import ...
PondASGIApp— the adapter itselfASGIWebSocketTransport— WebSocket transport (you usually don't construct this directly; the app does)
from pondsocket_asgi.testing import ...
ASGITestDriver,WebSocketSession,LifespanSession,SSESession
License
GPL-3.0-or-later.
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
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 pondsocket_asgi-0.0.4.tar.gz.
File metadata
- Download URL: pondsocket_asgi-0.0.4.tar.gz
- Upload date:
- Size: 12.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a701300f9fd9a393d586f939d0b92fd248f0501738f453fa1d21e5ab57b43faa
|
|
| MD5 |
6fc36e369b90ab7b424a501eb4817ee9
|
|
| BLAKE2b-256 |
48c26887027f68e07bcdb1b933a7b1fcc2ae19b56b311623302a7829ce5848f8
|
File details
Details for the file pondsocket_asgi-0.0.4-py3-none-any.whl.
File metadata
- Download URL: pondsocket_asgi-0.0.4-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f84bd9b3245f1dcb96016f703575bf3771071f32ce2394c9fce2d39ffed482e3
|
|
| MD5 |
0679ea6167f81d7c40da2a3dd4adafd6
|
|
| BLAKE2b-256 |
c33923dc2d935edecc47f95ae47255a4a872c4b695a4c38cc3781fff4634f908
|