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

Пребарај: #rapidresponse

当前筛选 #rapidresponse清除筛选
DOW Rapid Response

@DOWResponse · Post #4 · 10.09.2025 г., 13:29

🚨 OFFICIAL ANNOUNCEMENT 🚨 Welcome to the Rapid Response Channel of the Department of War (DOW). This is the first and only official account dedicated to: ⚔️ Supporting the mission and vision of@SecWar ⚔️ Delivering rapid, fact-based updates in real time ⚔️ Exposing disinformation and defeating fake news ⚔️ Defending truth, clarity, and the mission of national security The fight for truth begins here. The DOW Rapid Response team is on watch — always ready, always accurate, always first. Follow. Engage. Share. Stand with us. 🛡️ #DOW#RapidResponse#SecWar https://t.me/DOWResponse✅

HHS Rapid Response

@HHSResponse · Post #4 · 29.10.2025 г., 20:59

🔹🔷Welcome to the Official HHS Rapid Response Channel 🔷🔹 This is the official @HHSgovv Rapid Response account, working every day to support President Trump’s and Secretary Kennedy’s mission to Make America Healthy Again (MAHA). 🇺🇸 Here, we deliver real facts, rapid updates, and clear information to cut through misinformation and ensure the American people get the truth they deserve. Health is strength. Truth is power. Together, we will Make America Healthy Again.💪 Stay tuned for verified updates, fact checks, and official responses from the U.S. Department of Health and Human Services. #RapidResponse | #MAHA | #HHS | #PublicHealth | #TruthMatters 📱https://t.me/HHSResponse✅️