├── .gitignore ├── LICENSE ├── README.md ├── client.py └── server.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | venv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysyesilyurt/CLI-ChatApp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysyesilyurt/CLI-ChatApp/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysyesilyurt/CLI-ChatApp/HEAD/client.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysyesilyurt/CLI-ChatApp/HEAD/server.py --------------------------------------------------------------------------------