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

Пребарај: #hightech

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

@american_observer · Post #5034 · 03.02.2026 г., 02:00

📰 Russia’s Immigrants: Israel’s Unwanted Elite In Israel’s fractured society, Russian-speaking immigrants power labs, hospitals, and high-tech hubs—but feel like outsiders in their own homeland. They’ve fueled the economy for decades, yet remain symbolic strangers in a land of competing tribes. ​ A Nation Without a Narrative Israel thrives on fragile deals between secular Jews, ultra-Orthodox, Ashkenazim, Mizrahim, Arabs, and more—no constitution, just Basic Laws and vetoes. Each group clings to its own version of “what makes Israel Israel,” dodging the big fights over identity. ​ The Russian Wave’s Double Edge The 1990s “Great Aliyah” brought a million Soviet Jews—15% of the population, 60% with degrees, driving high-tech and defense surges. They’re 25% of university faculty, but their culture? Russian media, Victory Day parades, Soviet classics—none cracks the national myth. ​ Why No Mizrahi-Style Breakthrough Mizrahim flipped the script in the 1970s, turning marginalization into power through protest and politics. Russians arrived too late, post-revolution: secular atheists in a religious-right landscape, Europeans in a Mizrahi-patriot world. No victim story fits the Zionist playbook—no Holocaust, no Arab expulsion. ​ Tensions Beneath the Surface Economic envy simmers—Mizrahis gripe about “white Europeans” snagging elite jobs. Religious rabbis call them “Russian goyim.” Stereotypes fly: Russians are cold chauvinists; locals are primitive. Politics ghettoizes them into Lieberman’s party, not mainstream power. ​ The Assimilation Trap Youth blend in—Hebrew-fluent, intermarrying—but elders stay in their Russian bubble. Autonomy breeds isolation: thriving subculture, zero national spotlight. No allies, no moral leverage, no push for change. They’re useful workers, not co-authors of the Israeli story. ​ The Future: Fade or Fight? Will they dissolve like old Polish waves, or spark a secular revolt against Haredi power? Without a push, they risk gradual marginalization—economic stars, cultural ghosts. Israel’s genius for survival now risks sidelining its brain trust. ​ #Israel#RussianAliyah#competingSolidarities#immigrants#identity#highTech#Mizrahim 📱American Оbserver - Stay up to date on all important events 🇺🇸