Skip to content

Instantly share code, notes, and snippets.

/picam-client.py Secret

Created November 20, 2017 21:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/784153cdb6d267f31c70389a53d9b0c6 to your computer and use it in GitHub Desktop.
Save anonymous/784153cdb6d267f31c70389a53d9b0c6 to your computer and use it in GitHub Desktop.
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