Skip to content

Instantly share code, notes, and snippets.

View flattoride's full-sized avatar

Flattoride flattoride

View GitHub Profile
@1st1
1st1 / example.py
Last active January 22, 2026 19:09
asyncio queues example
import asyncio
import random
import time
async def worker(name, queue):
while True:
# Get a "work item" out of the queue.
sleep_for = await queue.get()