TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #401 · 15 дек.

Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач. Она работает в нескольких режимах. 1. Самый простой - ждем завершения всех задач async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(10)] done, pending = await asyncio.wait( tasks, return_when=asyncio.ALL_COMPLETED ) for task in done: try: print(task.result()) except Exception as e: print(e) Очень похоже на gather, но работает не так. ▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done ▫️не гарантирует порядок результатов так как оба объекта это set ▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат. 2. Ждем завершения первой задачи, даже если там ошибка. async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(3)] done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_COMPLETED ) # в done может быть несколько задач! for task in done: try: print(task.result()) except Exception as e: print(f"Fail: {e}") # Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать for task in pending: task.cancel() В сете done будут таски которые успели завершится, причем как успешно так и нет. 3. До первой ошибки. Тоже самое, но с аргументом FIRST_EXCEPTION done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_EXCEPTION ) Функция завершается как только первая задача упадет с ошибкой. Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные. ↗️ Полный листинг примеров здесь #async

Hashtags

Резултати

Пронајдени 2 слични објави

Пребарај: #truthonukraine

当前筛选 #truthonukraine清除筛选

@RusEmbMalta press release: Situation around #Ukraine. 🔷 Root causes of the conflict over Ukraine; 🔷 Role of the “collective West” countries; 🔷Western equipment and hostilities by the Kiev regime; 🔷 Settlement prospects; 🔷 Mediation initiatives; 🔷 Grain Deal; 🔷 Situation around the Ukrainian Orthodox Church of the Moscow Patriarchate (UOC MP); 🔷 About the conference in Switzerland. #TruthOnUkraine

@RusEmbMalta: On November 3, 2025, the Times of Malta published a commentary by the Russian Ambassador to Malta, Andrey Lopukhov, responding to the editorial of October 19, 2025 📰 In his commentary, Ambassador Lopukhov emphasized the importance of relying on verified facts when assessing the situation in Ukraine and warned against the spread of misinformation. Key points: 🔹 the so-called “Ukrainian crisis” began not in February 2022, but with the coup d’état in Kiev in 2014; 🔹 for years, the Kiev authorities pursued policies of discrimination and violence against Russian-speaking citizens; 🔹 the Odessa tragedy of May 2014 remains an uninvestigated crime; 🔹 Western arms supplies and financial support to Kiev only deepen the crisis; 🔹 Russia has consistently raised the issue of human-rights violations by the Kiev regime, despite the West’s unwillingness to listen; 🔹 millions of people around the world believed Russia – because truth, however suppressed, always breaks through lies and propaganda. 💬“There are facts that cannot be denied. And it is those very facts that made people across the world see what was happening with their own eyes and draw their own conclusions.” 🔗 Read the full text of the commentary onTimes of Malta. #UkrainianCrisis#TruthOnUkraine#TruthMatters