You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

server.py 296B

1234567891011121314
  1. import socket
  2. s = socket.socket()
  3. host = socket.gethostname()
  4. port = 4444
  5. s.bind((host, port))
  6. s.listen()
  7. while True:
  8. (connection, addr) = s.accept()
  9. print("Verbindung von ", addr)
  10. msg = "Danke für das Vorbeischauen!"
  11. connection.send(msg.encode("utf-8"))
  12. connection.close()