proto-socket/python
2026-06-17 07:41:05 +09:00
..
bench perf(socket): 성능 병목 개선을 반영한다 2026-06-06 12:47:15 +09:00
crosstest fullname 테스트 지원: 모든 언어 간 crosstest에 FullName 필드 추가 2026-06-16 21:56:48 +09:00
proto_socket fix: update communicator implementations (Kotlin, Python, TypeScript) and archive task docs 2026-06-17 07:41:05 +09:00
test fix: update communicator implementations (Kotlin, Python, TypeScript) and archive task docs 2026-06-17 07:41:05 +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