- Add gateway contract for inbound queue ordering (03+02_gateway_contract) - Update receive thread model across Dart, Go, Kotlin, Python, TypeScript - Implement queue ordering logic in BaseClient and Communicator - Add comprehensive tests for queue ordering in all languages - Update documentation (PORTING_GUIDE, PROTOCOL, README) - Archive task completion logs for completed subtasks |
||
|---|---|---|
| .. | ||
| crosstest | ||
| proto_socket | ||
| test | ||
| pyproject.toml | ||
| README.md | ||
Proto Socket Python
Python 3.11+ implementation of the Proto Socket protocol.
Supported Transports
| Transport | Status |
|---|---|
| TCP | Supported |
| WebSocket | Supported |
| TLS+TCP | Supported |
| WSS | Supported |
TLS and WSS use caller-provided ssl.SSLContext values.
Development
Install the package with test dependencies:
python -m pip install -e ".[dev]"
Run same-language tests:
python -m pytest test/ -v
Run cross-language crosstests:
python crosstest/python_dart.py
python crosstest/python_go.py
python crosstest/python_kotlin.py
python crosstest/python_typescript.py