Web_engingeering/client_app.py
2019-10-29 14:20:41 +01:00

16 lines
309 B
Python
Executable File

import socket
s = socket.socket()
host = socket.gethostname()
port = 61233
s.connect((host, port))
while True:
message = input("Bitte String eingeben ")
s.send(message.encode("utf-8"))
if message == "STOP":
break
data = s.recv(1024).decode()
print(data)
s.close()