Skip to content

Instantly share code, notes, and snippets.

@ss23
Created November 30, 2019 23:30
Show Gist options
  • Save ss23/2295f5da6d01aeb1f036887ec731575d to your computer and use it in GitHub Desktop.
Save ss23/2295f5da6d01aeb1f036887ec731575d to your computer and use it in GitHub Desktop.
import socket
HOST = 'host.com'
PORT = 50100
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
# read
data = s.read(8192)
# write
s.write("test\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment