Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drj42/66cfaf8df1cc8e3f863df0ee3b8b3697 to your computer and use it in GitHub Desktop.
Save drj42/66cfaf8df1cc8e3f863df0ee3b8b3697 to your computer and use it in GitHub Desktop.
Python 3 asyncio basic producer / consumer example
import asyncio
import random
q = asyncio.Queue()
async def producer(num):
while True:
await q.put(num + random.random())
await asyncio.sleep(random.random())
async def consumer(num):
while True:
value = await q.get()
print('Consumed', num, value)
loop = asyncio.get_event_loop()
for i in range(6):
loop.create_task(producer(i))
for i in range(3):
loop.create_task(consumer(i))
loop.run_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment