##// END OF EJS Templates

File last commit:

r52:53
r52:53
Show More
client.py
13 lines | 229 B | text/x-python | PythonLexer
import socket
s = socket.socket()
s.connect(("localhost", 5500))
while True:
mensaje = raw_input("> ")
s.send(mensaje)
if mensaje == "quit":
break
print "adios"
s.close()