No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

40 líneas
835 B

hace 5 años
  1. # chat-app
  2. Table of Contents
  3. - [chat-app](#chat-app)
  4. - [Server](#server)
  5. - [Client](#client)
  6. - [Thanks to](#thanks-to)
  7. This is a simple chat app that use socket for connection, and it's clients side can use `netcat` to connect or use the provided client side script to open a GUI client using tkinter.
  8. ## Server
  9. You can run the server side script inside the server subdirectory by using:
  10. `__main__.py HOST PORT`
  11. or
  12. `__main__.py -h`
  13. to see the full help dialog
  14. ## Client
  15. You can run the client side script inside the client subdirectory by using:
  16. `__main__.py HOST PORT`
  17. or
  18. `__main__.py -h`
  19. to see the full help dialog
  20. ## Thanks to
  21. Thanks to these two article as my inspiration
  22. - https://www.geeksforgeeks.org/simple-chat-room-using-python
  23. - https://medium.com/swlh/lets-write-a-chat-app-in-python-f6783a9ac170