Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 665 Bytes

File metadata and controls

32 lines (24 loc) · 665 Bytes

server.py

client_tui.py

index.html

websockets chat example

# start server
python3 server.py

# start client customtkinter
python3 client.py

# start client textual
python3 client_tui.py

# and start client JavaScript
index.html

client tk

sudo apt-get install python3-tk

dell python3 port

# <YOUR_PID> -> 3193 
lsof -i :3193
sudo kill -9 <YOUR_PID>