Skip to content

Instantly share code, notes, and snippets.

View Ryan-B-W's full-sized avatar

Ryan "Brody" Wilcox Ryan-B-W

View GitHub Profile
#!/usr/bin/env python
import socket
def uzblctrl(socket_file, input):
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
sock.connect(socket_file)
sock.settimeout(0.5) # 500ms
sock.send(input+'\n')