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

Пребарај: #batroun

当前筛选 #batroun清除筛选
Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3579 · 02.11.2024 г., 16:49

Lebabes citizen Imad Amhaz, who was abducted in Batroun by Israeli Forces, had been attending a month-long captain’s training course at a private maritime institute located in the area of Batroun. Amhaz was reportedly staying alone in a rented apartment in Batroun. Israeli media claim Amhaz he may have ties to Hezbollah despite the fact that Amhaz is a civilian maritime captain of commercial vessels and is currently undergoing training at the private marine institution in Batroun. Military sources revealed that the Israeli soldiers involved in the Batroun abduction numbered between 20 and 25, supported by additional escort personnel, with Lebanese army intelligence working to confirm the exact numbers. According to the National News Agency, Batroun residents confirmed that the military force led Amhaz to the shore and swiftly departed with him on high-speed boats into the open sea. #Lebanon#Batroun#IsraeliOperation#UNIFIL#LebanonUnderAttack

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3587 · 04.11.2024 г., 17:01

Although an Israeli elite unit which is tasked with the most difficult military operations, the history of "Shayetet 13" is full of failed operations. Israeli Security Minister Yoav Gallant, then commander of the unit that fell in a Hezbollah ambush in South Lebanon in 1997, acknowledged last year the ongoing psychological consequences on Israel and its military and security leaders due to the unforgettable ambush. #Shayetet13#Batroun#Ansariyeh#Hezbollah#SouthLebanon#Israel#YoavGallant