mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
9ded2c3d22
Now it's more descriptive
22 lines
478 B
Python
22 lines
478 B
Python
# server.py
|
|
|
|
import socket
|
|
|
|
HOST, PORT = '127.0.0.1', 1400
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)#refer to client.py
|
|
s.bind((HOST, PORT))
|
|
s.listen(1)#listen for 1 connection
|
|
|
|
conn, addr = s.accept()#start the actual data flow
|
|
|
|
print('connected to:', addr)
|
|
|
|
while 1:
|
|
data = conn.recv(1024).decode('ascii')#receive 1024 bytes and decode using ascii
|
|
if not data:
|
|
break
|
|
conn.send((data + ' [ addition by server ]').encode('ascii'))
|
|
|
|
conn.close()
|