Revised Connection Example : Socket Client « Network « Python






Revised Connection Example

Revised Connection Example
import socket

print "Creating socket...",
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print "done."

print "Looking up port number...",
port = socket.getservbyname('http', 'tcp')
print "done."

print "Connecting to remote host on port %d..." % port,
s.connect(("www.java2s.com", port))
print "done."

           
       








Related examples in the same category

1.Echo client with deadlock
2.Basic Connection ExampleBasic Connection Example