Skip to content

Instantly share code, notes, and snippets.

View nazzak's full-sized avatar
🧑‍💻
Working from home

nazzak

🧑‍💻
Working from home
View GitHub Profile
async def main():
coroutine1 = do_some_work(1)
coroutine2 = do_some_work(2)
coroutine3 = do_some_work(4)
tasks = [
asyncio.ensure_future(coroutine1),
asyncio.ensure_future(coroutine2),
asyncio.ensure_future(coroutine3)
]