9 lines
190 B
Python
9 lines
190 B
Python
|
import socket
|
||
|
|
||
|
HOST = "172.0.0.1"
|
||
|
PORT = 5760
|
||
|
|
||
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
||
|
s.connect((HOST, PORT))
|
||
|
s.sendall(b"Hello, world")
|
||
|
data = s.recv(1024)
|