A Simple TCP Socket Client: Echo client program : TCP « Network « Python






A Simple TCP Socket Client: Echo client program

 

import socket

HOST = '127.0.0.1'
PORT = 99999      
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
s.send('Hello, world')
data = s.recv(1024)
s.close()
print 'Received', 'data'

   
  








Related examples in the same category

1.An Uppercase Client Using TCP
2.A Simple TCP Socket Server: Echo server program
3.A Multithreaded Uppercase Server
4.A Persistent Uppercase Server Using TCP