Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Latest commit

 

History

History
25 lines (22 loc) · 1.13 KB

File metadata and controls

25 lines (22 loc) · 1.13 KB

Python-Chat-App

  • Networking Class Project CS 364.
  • This only usable for educatinoal porposes.
  • Project depends on lessons from İstanbul Şehir University.

Server.Py

HOST = '192.168.1.79' ## Server ip adress set yours by ipconfig and get your internet ip4 address.
PORT = 1234 ## Server PORT that is basic port you can use any if there is a collision just change it.

Client.Py / Chat.py

HOST = input('HOST: ') ### Thats part will set and wait for input so if you give server HOST you can connect. You cange it make it const.
PORT = input('PORT: ') ### Same as HOST
if not PORT: ### If there is none you can use basic port which i declared here.
    PORT = 1234

License

This project is licensed under the GPLV3 License - see the LICENSE file for details

Authors

  • Cafer Yükseloğlu - Initial work - cfr.yksl
  • Saurabh Chaturvedi - Documentation - medium.com See also the list of contributors who participated in this project.