A Simple TCP Socket Client : TCP : Network PYTHON examples


PYTHON examples » Network » TCP »

 

A Simple TCP Socket Client


 

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'

   
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Network
» TCP