Skip to content
Advertisement

Python asyncio task list generation without executing the function

While working in asyncio, I’m trying to use a list comprehension to build my task list. The basic form of the function is as follows:

JavaScript

My goal is to use a list of terms to create my task list:

JavaScript

My initial thought was:

JavaScript

This doesn’t create the task list it runs the function during the list comprehension. Is there a way to use a shortcut to create the task list wihout writing every task?

Advertisement

Answer

Your HTTP client does not support asyncio, and you will not get the expected results. Try this to see .wait() does work as you expected:

JavaScript

If you use asyncio.gather() you get one future encapsulating all your tasks, which can be easily canceled with .cancel(), here demonstrated with python 3.5+ async def/await syntax (but works the same with @coroutine and yield from):

JavaScript

And finally, if you want to use an async HTTP client, try aiohttp. First install it with:

JavaScript

then try this example, which uses asyncio.as_completed:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement