Skip to content

Instantly share code, notes, and snippets.

View kunansy's full-sized avatar
:octocat:
Specialization is for insects (c) Robert Heinlein.

Kirill kunansy

:octocat:
Specialization is for insects (c) Robert Heinlein.
View GitHub Profile
@1st1
1st1 / example.py
Last active May 16, 2024 03: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()