Три способа выполнить множество задач с asyncio
Функция для примера:
async def do_it(n):
await asyncio.sleep(random.uniform(0.5, 1))
return n
1. Последовательный вызов
async def main():
for i in range(100):
result = await do_it(i)
Такой вызов имеет смысл только тогда, когда результат одной задачи требуется для вызова следующей.
Если они независимы, то это антипаттерн, так как аналогичен простому синхронному вызову по очереди.
2. Упорядоченный результат
async def main():
tasks = [do_it(i) for i in range(100)]
results = await asyncio.gather(*tasks)
Выполняет корутины конкурентно и возвращает результат в виде списка.
Полезен когда требуется получить результаты в том же порядке в котором задачи отправлены.
3. Результат по мере готовности
tasks = [asyncio.create_task(do_it(i)) for i in range(100)]
for cor in asyncio.as_completed(tasks):
result = await cor
Так же выполняет корутины конкурентно, но не гарантирует порядок. Результат возвращается по мере готовности, каждый отдельно.
Полезен когда нужно обработать любой ответ как можно скорее.
#async
#G20#India
Narendra #Modi (#BJP|Destra): "Ho ricevuto una buona notizia. Grazie al duro lavoro della nostra squadra, è stato costruito un consenso sulla Dichiarazione dei leader del vertice G20 di Nuova Delhi. Mi congratulo con i miei sherpa e con i ministri che hanno lavorato sodo per rendere questo risultato possibile. La presidenza indiana del G20 è la più ambiziosa della storia. Con 112 tra documenti finali e documenti della presidenza, abbiamo più che raddoppiato il corposo lavoro delle precedenti presidenza."
@OsservatorioEsteri
#G20#India
Narendra #Modi (#BJP|Destra): "Ho inviato al Presidente di turno dell'Unione africana Azali #Assoumani (🇰🇲#CRC|Centro-sinistra🇰🇲) un documento in cui si invita formalmente l'Unione come membro permanente del G20. Il documento esprime la ferma convinzione che la sua inclusione contribuirà significativamente a far fronte alla sfide globali dei nostri tempi."
@OsservatorioEsteri
The former minister of Delhi, #SandeepKumar, was today inducted into the #BJP by #Haryana CM Nayab Saini.
#Sandeep went to jail for rape in exchange for providing jobs and was dismissed from his ministerial position due to this case.
On social #media, when his (dirty secrets) were exposed, the BJP found itself on the back foot. Sandeep was expelled from the party. And now, this rapist has been re-admitted into the BJP.
Now, if someone calls this a rapist, all Indians, especially Hindu extremists, get upset. My brother, the truth is that these people can do anything for power.Tomorrow, someone in your family, a girl, could be raped in exchange for a job, and you might not be able to do anything. When you protest, you will be labeled a traitor and arrested.
The #BJP is a party of #rapists.
#bhagwaterrorist