An open API service indexing awesome lists of open source software.

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

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```