circuitpython/tests/circuitpython-manual/socketpool/server/host-client.py

18 lines
395 B
Python
Raw Normal View History

2021-02-11 17:36:40 -05:00
import socket
HOST = '192.168.10.128' # The server's hostname or IP address
PORT = 80 # The port used by the server
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.settimeout(None)
print("Connecting")
s.connect((HOST, PORT))
print("Sending")
s.send(b'Hello, world')
print("Receiving")
data = s.recv(1024)
print('Received', repr(data))