-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
32 lines (26 loc) · 859 Bytes
/
client.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
import threading
import socket
nickname=input('choose a nickanme: ')
client =socket.socket(socket.AF_INET,socket.SOCK_STREAM)
client.connect(('127.0.0.1',8080))
def receive():
while True:
try: # receive messages fromserever we consider the server as a client
message=client.recv(1024).decode('ascii')
if message=='NICK':
client.send(nickname.encode('ascii'))
else:
print(message)
except:
print('An error occurred!')
client.close()
break
def write():
while True:
message=f'{nickname}: {input("")}'
client.send(message.encode('ascii'))
# create a recevie thread and a send thread
receiveThread= threading.Thread(target=receive)
receiveThread.start()
sendThread= threading.Thread(target=write)
sendThread.start()