-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.py
36 lines (23 loc) · 900 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
33
34
35
36
import socket
host = '127.0.0.1' # For test run, we run central server and client on same pc
port = 8080 # central server port number
def client_program() -> None:
"""This manages user input and client-server communication"""
client_socket = socket.socket()
client_socket.connect((host, port)) # connect to the server
# username exchange
data = client_socket.recv(2048).decode()
print(data)
message = input(" -> ") # take command from user
cond = True
while cond:
client_socket.send(message.encode()) # send message
response = client_socket.recv(2048).decode() # receive response
print(response)
message = input(' -> ')
if message.lower().strip() == 'exit':
cond = False
client_socket.send('exit'.encode())
client_socket.close()
if __name__ == '__main__':
client_program()