You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
898 B

5 years ago
  1. # chat-app
  2. Table of Contents
  3. - [chat-app](#chat-app)
  4. - [Server](#server)
  5. - [Client](#client)
  6. - [Thanks to](#thanks-to)
  7. `NIM :` __160010136__
  8. `Nama:` __Leonardo Deo Gratias Agamus__
  9. This project is made to complete my Network Programming midterm assignment to make a simple chat application using python.
  10. This is a simple chat app that use socket for connection.
  11. ## Server
  12. You can run the server side script inside the server subdirectory by using:
  13. `__main__.py HOST PORT`
  14. or
  15. `__main__.py -h`
  16. to see the full help dialog
  17. ## Client
  18. You can run the client side script inside the client subdirectory by using:
  19. `__main__.py HOST PORT`
  20. or
  21. `__main__.py -h`
  22. to see the full help dialog
  23. ## Thanks to
  24. Thanks to these two article as my inspiration
  25. - https://www.geeksforgeeks.org/simple-chat-room-using-python
  26. - https://medium.com/swlh/lets-write-a-chat-app-in-python-f6783a9ac170