This file contains hidden or 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 subprocess | |
from subprocess import PIPE | |
from threading import Thread | |
try: | |
from queue import Queue, Empty | |
except: | |
from Queue import Queue, Empty | |
# This creates a queue object and a function to put properly formatted stuff in it | |
q = Queue() |