Created
April 23, 2020 03:17
-
-
Save tbrlpld/8c93a6804d3808500664f7a7b6af58e1 to your computer and use it in GitHub Desktop.
Simple Python socket example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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()}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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