https://github.com/dinhlongviolin1/python-simple-chat-socket-threading
Simple Python Chat app using socket and threading
https://github.com/dinhlongviolin1/python-simple-chat-socket-threading
chat chatapp python socket socket-client socket-communication socket-programming threading
Last synced: 5 months ago
JSON representation
Simple Python Chat app using socket and threading
- Host: GitHub
- URL: https://github.com/dinhlongviolin1/python-simple-chat-socket-threading
- Owner: dinhlongviolin1
- License: mit
- Created: 2020-03-30T17:20:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-30T17:35:35.000Z (over 5 years ago)
- Last Synced: 2025-01-30T18:43:40.928Z (11 months ago)
- Topics: chat, chatapp, python, socket, socket-client, socket-communication, socket-programming, threading
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-simple-chat-socket-threading
Simple Python Chat app using socket and threading
## Requirement to use this app
* Have python installed (tkinter, socket, threading is built into Python)
## How to run this app?
1. On your computer
* Get your private IP address (local machine IP address)
* Go to Server.py and Client.py and change `SERVER` to your private IP address
* Run Server.py
* Run instances of Client.py
2. On server
* Get your server private and public IP address
* Go to Server.py and change `SERVER` to your private IP address
* Go to Client.py and change `SERVER` to your public IP address
* Run Server.py on server
* Run instances of Client.py on your computer