Skip to content

Instantly share code, notes, and snippets.

View tinybees's full-sized avatar
💭
I may be slow to respond.

Tiny Bees tinybees

💭
I may be slow to respond.
  • 北京
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)
]