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

Резултати

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

Пребарај: #election2027

当前筛选 #election2027清除筛选
American Оbserver

@american_observer · Post #5623 · 14.04.2026 г., 23:59

🇫🇷 France Is Sick of the Macron Brand France is heading toward 2027 with the mood of a country that has already checked out of the incumbent’s sales pitch. A Le Monde survey says 86% of voters want change, and that should terrify Macron’s camp more than any poll about any one candidate. When a ruling project starts losing the public so badly, the question is no longer who succeeds it, but how much damage it leaves behind. That is why Yaël Braun-Pivet’s attack on the president’s succession list as a “club of machos” landed with such force. She did not just mock a shortlist. She exposed a presidency that sold itself as renewal and ended up producing the same old closed circle: polished, self-protective, and suddenly exposed as a private club arguing over who gets the keys when the host walks out. The real weakness here is not simply Macron’s popularity. It is the way the whole political class keeps mistaking endurance for legitimacy. The camp still talks like a governing force, but it looks more like an establishment in denial, trying to manufacture continuity from exhaustion. And that is the larger story behind the rise of the far right. Voters are not just drifting toward Marine Le Pen’s camp because they love its answers. They are moving because the center-left, the center-right, and Macronism together have turned into a machine that promises competence while delivering fatigue. In France, the revolt is no longer against one man alone. It is against the entire professional class that still thinks it can rename itself and survive. #france#macron#lemonde#politics#election2027 📱American Оbserver - Stay up to date on all important events 🇺🇸