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

Резултати

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

Пребарај: #centralbanks

当前筛选 #centralbanks清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #4115 · 10.02.2025 г., 16:00

Gold Surpasses Bitcoin in 2025 Returns Gold prices hit $2900 per ounce, outpacing Bitcoin's 4% return this year with a 10% rise. Central banks are aggressively buying gold amid trade war fears, seeking safe-haven assets. See market trends and forecasts: source. #Bitcoin#Gold#CentralBanks#MarketTrends#SafeHaven#Investment#Finance#EconomicNews#Trading#Crypto#VC #2025

Crypto M - Crypto News

@CryptoM · Post #64700 · 09.04.2026 г., 14:59

🚀 IMF Chief Georgieva: Central Banks Cannot Afford Uncontrolled Inflation IMF Managing Director Kristalina Georgieva has emphasized that central banks worldwide are unable to bear the consequences of uncontrolled inflation. According to Jin10, Georgieva highlighted the critical need for monetary authorities to maintain vigilance and take necessary measures to prevent inflation from spiraling out of control. She stressed that failure to manage inflation effectively could lead to severe economic repercussions, affecting global financial stability. Georgieva's remarks underscore the importance of coordinated efforts among central banks to address inflationary pressures and ensure sustainable economic growth. #IMF#CentralBanks#Inflation#MonetaryPolicy#EconomicStability#GlobalEconomy#FinancialStability#KristalinaGeorgieva#EconomicGrowth

Crypto M - Crypto News

@CryptoM · Post #64859 · 10.04.2026 г., 05:05

🚀 PRECIOUS METALS | Morgan Stanley Questions Gold's Role as a Risk Management Tool According to Jin10, Morgan Stanley has raised concerns about gold's traditional role as a risk management tool following six weeks of significant volatility in commodity prices. Amy Gower, a metals and mining strategist at Morgan Stanley, stated that gold is currently behaving more like a risk asset rather than a safe haven. Typically, gold should serve as a diversification tool within investment portfolios, but this is not currently the case. Gower acknowledged that it is 'normal' for gold to weaken following a shock, as investors often seek liquidity. However, she pointed out that gold prices are increasingly influenced by the trading activities of major holders such as central banks and ETFs. #preciousmetals#gold#riskmanagement#morganstanley#commodityprices#investmentportfolios#metals#mining#centralbanks#ETFs#XAUT