In [1]:
from __future__ import print_function, division
import socket

In [4]:
HOST = ''    # The remote host
PORT = 50007 # The same port as used by the server
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
s.sendall('Hello, world')
data = s.recv(1024)
s.close()
print('Received', repr(data))


Received 'Hello, world'

In [ ]: