Network Python

import socket
print "Creating socket...",
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print "done."
print "Connecting to www.rntsoft.com.",
s.connect(("www.rntsoft.com", 80))
print "done."