Quickstart
Environment
Create and activate a virtual environment:
python -m venv .venv
source .venv/bin/activate
Install the package (from a wheel or local source):
python -m pip install -U pip
python -m pip install .
Run a TCP echo demo
Start the server:
python -m new_year_2026.tcp_server
In another terminal, run the client:
python -m new_year_2026.tcp_client
Run a TLS echo demo
python -m new_year_2026.tls_echo_server
python -m new_year_2026.tls_echo_client
Note
The bundled certificate is self-signed and intended for local learning.