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

Резултати

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

Пребарај: #melaniatrump

当前筛选 #melaniatrump清除筛选
International News

@intnewsagency · Post #9129 · 02.04.2026 г., 19:37

Melania Trump Facilitates Return of Ukrainian Children to Families For the fourth time, U.S. First Lady Melania Trump has helped speed up the reunification of children separated by the Ukraine conflict. According to the White House, six children currently in Russia will soon return to their families in Ukraine, with another child rejoining loved ones by month’s end. This initiative marks a significant humanitarian effort amid the ongoing crisis. #Ukraine#Children#HumanitarianAid#MelaniaTrump The main news of Russia and the world ishere.

Crypto M - Crypto News

@CryptoM · Post #65174 · 11.04.2026 г., 16:11

🚀 Melania Token Struggles Despite Media Coverage of White House Denial Melania Trump's recent denial of any connections to Jeffrey Epstein at the White House on April 9 did not positively impact the MELANIA token's market performance. According to NS3.AI, the token continued to trade at approximately $0.10, remaining about 99% below its peak of $13.70 in January 2025. Despite widespread media coverage of her remarks, CryptoSlate data indicates that the token experienced a decline of over 3% in the past 24 hours. Additionally, Melania Trump urged Congress to conduct public hearings for Epstein's victims. #MelaniaToken#JeffreyEpstein#WhiteHouse#Crypto#MarketPerformance#NS3AI#CryptoSlate#MelaniaTrump#PublicHearings#EpsteinVictims

Crypto M - Crypto News

@CryptoM · Post #64758 · 09.04.2026 г., 19:37

🚀 Melania Trump Denies Connection to Jeffrey Epstein, Calls for Congressional Hearing First Lady Melania Trump has publicly denied any association with Jeffrey Epstein, the financier who faced numerous allegations of sexual misconduct before his death. Bloomberg posted on X that Melania Trump is advocating for a congressional hearing to provide a platform for survivors of Epstein's abuse to share their experiences. This call for action comes amid ongoing discussions about Epstein's network and the impact of his actions on victims. The First Lady's statement aims to clarify her position and support those affected by the scandal. #MelaniaTrump#JeffreyEpstein#CongressionalHearing#SexualAbuse#VictimSupport#Scandal#Bloomberg#FirstLady#EpsteinCase