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

Резултати

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

Пребарај: #genocide

当前筛选 #genocide清除筛选
Freedom Flotilla Coalition

@FFC_official_channel · Post #571 · 03.07.2025 г., 18:48

"‘We Need More Angry Young Women’ To End Israeli #Genocide Of #Gaza... And Fewer Angry, Old, White Politicians." Climate Activist and Gaza #FreedomFlotilla volunteer Greta Thunberg’s response to Trump’s assertion that she needs anger management. By Ann Wright, in Popular Resistance. https://popularresistance.org/we-need-more-angry-young-women-to-end-israeli-genocide-of-gaza/

Savino Balzano

@savinobalzano · Post #563 · 14.02.2024 г., 17:00

Quanto accade a Gaza è un GENOCIDIO, condotto da un governo di criminali: mi rendo conto che per il direttore di qualche bollettino (definirlo telegiornale è troppo) sia dura da mandare giù, ma tant'è. I peggiori però sono quelli che oggi parlano di libertà di espressione a rischio: sono gli stessi che ci accusavano di essere fiancheggiatori di Hamas o di essere putiniani. La mia al TG Plus di Cusano Italia TV #genocide#Genocidio#Palestina#guerra#pace https://www.youtube.com/watch?v=MyB-BMQAeIQ&ab_channel=SavinoBalzano

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3869 · 15.01.2025 г., 18:52

After 466 days of #genocide, #Israel and #Hamas agreed to a deal to halt fighting in #Gaza and exchange Israeli hostages for Palestinian prisoners. This deal opens the way to a possible end to a 15-month war that has upended the Middle East. The agreement follows months of on-off negotiations brokered by Egyptian and Qatari mediators, with the backing of the United States, and came just ahead of the Jan. 20 inauguration of U.S. President-elect Donald Trump.

Hidden In Plain Sight

@hiddeninplainsight1 · Post #24083 · 20.03.2026 г., 06:16

☠️💀 While Bovaer is front and centre atm we need to also ask our dairy and meat suppliers if they are using RUMIN8 on their cattle...... Check out what RUMIN8 really is.....😳🙄🧐 Highly toxic to animals and humans....😡🤨 #climatechangehoax#depopulation#genocide https://t.me/hiddeninplainsight1

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3143 · 28.08.2024 г., 15:50

Herzi Halevi, the Chief of Staff of the Israeli Occupation Forces, visits the frontlines of the military operation in the #WestBank, stating, "We are here for Israel's security." Tell us again how this is NOT a #Genocide And point to us wehre the HELL is #Hamas in the West Bank you genocidaires.

CulturalExile

@CulturalExile14 · Post #3792 · 11.12.2022 г., 16:08

Another sign of the intentional destruction of civilisation. In 2024 Trafalgar Square's Fourth Plinth will be surrounded by the casts of 850 tranny prozzies!! A monstrosity created by Mexico's answer to Yoko Ono, the smokescreen tranny agenda keeps the #paedophilia, #transhumanism and #genocide trains chugging. https://artsandculture.google.com/story/850-improntas-850-imprints-mayor-of-london/VQWhmzmLR4DD5Q?hl=en https://youtu.be/3CIuRLfmNuI

ПретходнаСтраница 1 од 4Следна