2024-03-06 22:25:12 -08:00
|
|
|
"""Connect to a socket. Requires Python >= 3.2."""
|
2023-07-01 11:58:00 -04:00
|
|
|
import socket
|
2024-03-06 22:25:12 -08:00
|
|
|
|
|
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
|
|
|
|
|
sock.connect(("localhost", 256))
|
|
|
|
|
sock.sendall(b"hello socket world")
|