python-scripts/scripts/Socket_Programming_Python
2022-10-09 14:53:49 +05:30
..
client1.py Add socket programming scripts 2022-10-09 14:53:49 +05:30
README.md Add socket programming scripts 2022-10-09 14:53:49 +05:30
server1.py Add socket programming scripts 2022-10-09 14:53:49 +05:30

Socket Progamming in Python

We all know how to use python for basic stuff and general programming. But this script allows you to create a server and client of your own using sockets.

What are sockets?

A socket is one endpoint of a two-way communication link between two programs running on the network. A socket is bound to a port number so that the TCP layer can identify the application that data is destined to be sent to. An endpoint is a combination of an IP address and a port number.

Requirments

Clone Repo You don't need to install anything just import sockets library. More information here : https://docs.python.org/3/howto/sockets.html Use server.py for server Use client.py for client