# Example Python socket programming code
# Modified based on the example code at:
# http://docs.python.org/release/2.5.2/lib/socket-example.html

# Echo client program
# The code sends "Hello, world" text to the server, which 
# sends the message back to client for display
import socket

HOST = 'localhost'    # The remote host name
PORT = 50007              # The same port as used by the server
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', repr(data)