-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclientPy.py
54 lines (44 loc) · 1.27 KB
/
clientPy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import sys
import os
import socket
import select
# connect to remote host
host = "127.0.0.1"
port = 5000
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(2)
# clear screen
os.system('cls' if os.name == 'nt' else 'clear')
try :
s.connect((host, port))
except :
print 'Unable to connect'
sys.exit()
print 'Connected to remote host \n'
# Get user pseudo
pseudo = raw_input('Enter a user name: \n')
s.send(pseudo)
while 1:
socket_list = [sys.stdin, s]
# Get the list sockets which are readable
ready_to_read,ready_to_write,in_error = select.select(socket_list , [], [])
for sock in ready_to_read:
if sock == s:
# incoming message from remote server, s
data = sock.recv(4096)
if not data :
print '\nDisconnected from chat server'
sys.exit()
else :
#print data
sys.stdout.write('\r' + data + '\n');sys.stdout.flush()
sys.stdout.write('>>> ' )
sys.stdout.flush()
else :
# user entered a message
msg = sys.stdin.readline()
s.send(msg)
sys.stdout.write('>>> ' )
sys.stdout.flush()
if __name__ == "__main__":
sys.exit(chat_client())