Skip to content

Instantly share code, notes, and snippets.

my_queue = Queue()
size_of_my_queue = my_queue()
my_queue.put(log_entry)
while not my_queue.empty():
item = my_queue.get().strip()
# https://realpython.com/intro-to-python-threading/#timer
# https://stackoverflow.com/questions/16578652/threading-timer
myTimer = th.Timer(30, remindMe, [argument])
myTimer.start()