Skip to content

Instantly share code, notes, and snippets.

/picam-client.py Secret

Created November 20, 2017 21:46
import socket
import sys
HOST = '127.0.0.1'
PORT = 10000
s = socket.socket()
s.connect((HOST, PORT))
print s
while 1:
msg = raw_input("Command To Send: ")
if msg == "close":
s.close()
sys.exit(0)
s.send(msg)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment