-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathclient.py
45 lines (37 loc) · 1.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
import socket
import threading
flag = 0
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
hostname = input("Enter your host :: ")
s.connect((hostname, 1023))
nickname = input("Enter your Name :: ")
def recieve():
while True:
try:
msg = s.recv(1024).decode("utf-8")
if msg == "NICK":
print("Welcome to Chat room :: ", nickname)
s.send(bytes(nickname, "utf-8"))
else:
print(msg)
except Exception as error:
print(f"An Erro occured {error}")
s.close()
flag = 1
break
def Write():
while True:
try:
reply_msg = f"{nickname} :: {input()}"
s.send(bytes(reply_msg, "utf-8"))
except Exception as error:
print(f"An Error Occured while sending message !!!\n error : {error}")
s.close()
flag = 1
break
if flag == 1:
exit()
recieve_thrd = threading.Thread(target=recieve)
recieve_thrd.start()
write_thrd = threading.Thread(target=Write)
write_thrd.start()