create_socket(family=socket.AF_INET, type=socket.SOCK_STREAM)
This is identical to the creation of a normal socket, and will use the same options for creation. Refer to the socket
documentation for information on creating sockets.
Changed in version 3.3: family and type arguments can be omitted.
Please login to continue.