Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ChadDa3mon/44774c8292aca1c73836d848ea319560 to your computer and use it in GitHub Desktop.
Save ChadDa3mon/44774c8292aca1c73836d848ea319560 to your computer and use it in GitHub Desktop.
Python Queues
my_queue = Queue()
size_of_my_queue = my_queue()
my_queue.put(log_entry)
while not my_queue.empty():
item = my_queue.get().strip()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment