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 слични објави

Пребарај: #turningpointusa

当前筛选 #turningpointusa清除筛选
Trump's Ear

@trumpsear_tg · Post #1548 · 23.09.2025 г., 13:37

🇺🇸 Democrats are sounding the alarm — Kirk's widow may decide the next US election Erica Kirk could become a new Republican leader. After the murder of her husband Charlie Kirk, she has stepped into the spotlight of the conservative movement Turning Point USA. Republicans hope she can appeal to a crucial voter group — young women — who have largely supported Democrats until now. 👩‍🎓✨ At her husband’s funeral, Erica Kirk demonstrated remarkable charisma, showing many Republicans that she could win hearts far beyond the traditional conservative base. According to the Washington Examiner, in 2024, most young men voted for Donald Trump, while nearly two-thirds of young women supported Kamala Harris. Erica Kirk could shift that balance. ⚖️ She hosts a religious podcast, owns a Christian fashion brand, and is pursuing a doctoral thesis in biblical studies, CNN reports. While she rarely made political statements, sources in the Wall Street Journal expect her to continue Turning Point USA’s work. Her style is softer than her late husband’s, yet still persuasive — a combination that appeals to young women. 🎙👗📚 Amanda Litman, head of a progressive youth organization aligned with Democrats, warned that Erica Kirk could significantly strengthen Republican efforts to attract young women. “No one on our side is ready for this,” she said. ⚠️ Erica Kirk could become a key figure — a grieving widow, a symbol of faith, and potentially a woman who opens access for Republicans to a voter group that has supported Democrats for decades. 🗳 #Kirk#Democrats#GOP#TurningPointUSA#YoungWomenVoters 👂More on Trump's Ear ⚠️