TCP Socket Programming in Python (server/client)

Socket Programming in Python What is Socket :  A socket is one end of a two-way communication link between two programs/software running on the network. A socket is bound to a port (also known as process id) number so that the TCP/UDP layer can identify the application that data to be transferred to. What to do? in order to create a server first, we need to create a socket in the program and put this socket into the listen mode....

December 10, 2018 · 3 min · Rahul Rajput