Skip to content

Instantly share code, notes, and snippets.

@tbrlpld
Created April 23, 2020 03:17
Show Gist options
  • Save tbrlpld/8c93a6804d3808500664f7a7b6af58e1 to your computer and use it in GitHub Desktop.
Save tbrlpld/8c93a6804d3808500664f7a7b6af58e1 to your computer and use it in GitHub Desktop.
Simple Python socket example
import socket
HOST = "127.0.0.1"
PORT = 5000
s = socket.socket()
s.connect((HOST, PORT))
# msg = str(input("Message -> "))
while True:
msg = str(input("Message -> "))
s.sendall(msg.encode())
data = s.recv(1024)
print(f"Received from server: {data.decode()}")
import socket
HOST = "127.0.0.1"
PORT = 5000
with socket.socket() as s:
s.bind((HOST, PORT))
s.listen(1)
while True:
client, addr = s.accept()
print(f"Connected to client {addr}")
while True:
data = client.recv(1024)
if not data:
break
print(f"Received from client: {data.decode()}")
# Echoing data back to client
client.sendall(data)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment