- File sharing can send any file using python sockets.
- It uses server and client connections to send file.
- One PC/laptop becomes server by running server.py file and any number of PCs/laptops can become client by running client.py
- Take client.py and server.py files one directory up.
- Run server in terminal/cmd using
python server.pycommand. - Change the ip address in client from
''to the current ip of pc running server.py file.- On windows ip can be found by running
ipconfig. - On Linux ip can be found by running
ifconfig.
- On windows ip can be found by running
- Run client in terminal/cmd using
python client.pycommand. - Enter the path of the file from either server or client.
- Hurrayyyyy!!! File has been transfered successfully.