What's the recommended way to make parallel http requests (outbound to slow APIs I use) from a single inbound http request?
The general form of this question is how to do multiple async coroutines in parallel, e.g. using asyncio.create_task or asyncio.to_thread (will these work?).
If it matters I have a paid account and am using Flask.