https://github.com/thejasnu/socket-programming
Socket programming in python
https://github.com/thejasnu/socket-programming
python3 socket-programming
Last synced: 12 months ago
JSON representation
Socket programming in python
- Host: GitHub
- URL: https://github.com/thejasnu/socket-programming
- Owner: ThejasNU
- License: mit
- Created: 2022-04-03T13:02:33.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-03T13:13:06.000Z (about 4 years ago)
- Last Synced: 2025-02-18T01:23:41.566Z (over 1 year ago)
- Topics: python3, socket-programming
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Socket programming using python
This is a socket programming project, which works for multiple clients
It has 3 functions:
1. Madlibs generator
2. Crypto current price
3. Weather report
To run this, first create a `.env` file in root directory and store server ip adress in `HOST_IP` in client device and openweathermap api key as `API_KEY` in server device, then
On windows:
```python client.py```
On unix based devices:
```python3 client.py```
run the above command on client devices
And on server devices, run the command shown below
On windows:
```python server.py```
On unix based devices:
```python3 server.py```