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.
manager/client/manager_client.py

6 lines
165 B

import socket
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("192.168.1.2", 1337))
message = "ohayou~"
s.sendall(message.encode("ASCII"))
s.close()