Shared wire types, schemas, and reactive primitives for PondSocket.
Project description
pondsocket-common
Shared wire types, schemas, and reactive primitives consumed by both pondsocket (server) and (eventually) pondsocket-client (Python client). Mirrors the role of @eleven-am/pondsocket-common in the JavaScript monorepo.
This package has one runtime dependency: pydantic v2.
Install
pip install pondsocket-common
In a workspace it's installed automatically via uv sync.
What's in it
| Module | Purpose |
|---|---|
pondsocket_common.enums |
ServerActions, ClientActions, ChannelState, PresenceEventTypes, ErrorTypes, ChannelReceiver, SystemSender, Events, PubSubEvents — all StrEnum with exact wire strings |
pondsocket_common.schemas |
Pydantic v2 models: ClientMessage, ServerMessage, PresenceMessage, ChannelEvent, plus parse_client_message / parse_server_message / parse_presence_message / parse_channel_event with comnon-style ValidationError |
pondsocket_common.types |
UserData, IncomingConnection, PresencePayload, PubSubEvent variants, type aliases (PondMessage, PondPresence, PondAssigns, JoinParams) |
pondsocket_common.headers |
Headers — case-insensitive view over ASGI-shape list[tuple[bytes, bytes]] |
pondsocket_common.subjects |
Subject[T] and BehaviorSubject[T] — synchronous reactive primitives mirroring the JS comnon impl |
pondsocket_common.errors |
PondError, status constants (400/401/403/404/409/429/500/503/504), constructor helpers (bad_request, unauthorized, …), MultiError |
pondsocket_common.ids |
uuid() — dashed v4 string |
Wire format
Outbound client → server (ClientMessage):
{
"action": "BROADCAST",
"event": "message",
"channelName": "/chat/42",
"requestId": "<uuid>",
"payload": {"text": "hi"}
}
Server → client (ServerMessage | PresenceMessage) discriminated on action:
{ "action": "SYSTEM", "event": "ACKNOWLEDGE", "channelName": "/chat/42", "requestId": "...", "payload": {} }
{ "action": "PRESENCE", "event": "JOIN", "channelName": "/chat/42", "requestId": "...", "payload": {"presence": [...], "changed": {...}} }
Field names on the wire are camelCase. The Python models use snake_case attributes (request_id, channel_name) with pydantic aliases. Use model_dump(by_alias=True) to serialize to wire form.
Parity with @eleven-am/pondsocket-common
- Enums have identical string values.
Subject/BehaviorSubjectmirror the JS classes 1:1 (synchronous fan-out,sizeproperty,close()semantics,BehaviorSubjectinitial-value replay on subscribe).ValidationError(message, path?)formats as"path: message"to match.uuid()returns a dashed lowercase hex string (matchescrypto.randomUUID()).
The pydantic models are the canonical schema definitions on the Python side; the JS package uses hand-rolled validators with the same field-name shape.
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_common-0.0.1.tar.gz.
File metadata
- Download URL: pondsocket_common-0.0.1.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f19b33504a7d92aebae5601c1642c2adb30ac5645a84068699f9a812f21cc424
|
|
| MD5 |
420a76af0550815c57180e93d34160b3
|
|
| BLAKE2b-256 |
45e2cd218959f2b273c04e088cecd7df61ca468d1c395753474553c68ab9ab18
|
File details
Details for the file pondsocket_common-0.0.1-py3-none-any.whl.
File metadata
- Download URL: pondsocket_common-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.5 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 |
970479c65bcbcd6605fd0acdb1455609ec90eae0e9a0992d297778362888afd7
|
|
| MD5 |
f456ed0061968c0fd240e611bb219b73
|
|
| BLAKE2b-256 |
33298ed320d5a18615a7b5f8877cef7a7f18f9930f4c0696d5e372fed8db170e
|