proto-socket/python
2026-06-03 13:10:48 +09:00
..
bench chore: update stress test scripts and archive slow_mix task files 2026-06-03 13:10:48 +09:00
crosstest chore: archive completed subtask 02+01_cross_baseline and update crosstest files across all languages 2026-06-03 05:14:16 +09:00
proto_socket feat: payload size matrix benchmark + archive completed subtask artifacts 2026-06-03 06:15:52 +09:00
test feat: payload size matrix benchmark + archive completed subtask artifacts 2026-06-03 06:15:52 +09:00
pyproject.toml refactor: rename toki_socket to proto_socket across all languages 2026-05-02 07:19:12 +09:00
README.md 교차 테스트 프로세스 정리 및 문서 업데이트 (Go, Dart, TypeScript, Python) 2026-05-21 17:14:34 +09:00

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