March 2019
Beginner
490 pages
12h 40m
English
The Python socket module provides an interface to the Berkeley sockets API (another name for internet sockets). Programming networks in Python depends on the socket objects. To create an object of this type in Python, we must use the socket.socket() function that's available in the socket module, with the socket_0 = socket.socket(socket_family, socket_type, protocol=0) syntax.
Let's see a detailed description of the parameters:
Read now
Unlock full access