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

Резултати

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

Пребарај: #buyrating

当前筛选 #buyrating清除筛选
Crypto M - Crypto News

@CryptoM · Post #65143 · 11.04.2026 г., 12:05

🚀 Wall Street Analysts Predict MSTR Stock to Double This Year Most Wall Street analysts anticipate that the stock price of Michael Saylor's company, MSTR, will more than double this year. According to Odaily, the majority of analysts maintain a buy rating, describing it as one of the most undervalued companies globally. #WallStreet#MSTR#StockPrediction#MichaelSaylor#BuyRating#UndervaluedCompanies

Crypto M - Crypto News

@CryptoM · Post #65130 · 11.04.2026 г., 09:03

🚀 TD Cowen Analyst Lowers Target Price for MicroStrategy TD Cowen analyst Lance Vitanza has revised the target price for Bitcoin reserve company MicroStrategy (MSTR) from $440 to $350, while maintaining a buy rating. According to Odaily, this adjustment reflects the analyst's updated assessment of the company's financial outlook. #TDCowen#Analyst#TargetPrice#MicroStrategy#Bitcoin#MSTR#FinancialOutlook#BuyRating#BTC

Crypto M - Crypto News

@CryptoM · Post #64767 · 09.04.2026 г., 20:52

🚀 Analyst Lance Vitanza Initiates Buy Ratings on Three Treasury Companies Lance Vitanza from TD Cowen has initiated coverage on Nakamoto, SharpLink Gaming, and Strive with Buy ratings. According to NS3.AI, Vitanza has set price targets of $1, $16, and $26 for these companies, respectively. He suggests that these treasury firms have the potential to outperform spot crypto exchange-traded products, provided that cryptocurrency prices recover and the companies continue to increase their token holdings per share. #LanceVitanza#TD Cowen #Nakamoto#SharpLinkGaming#Strive#BuyRating#TreasuryCompanies#Crypto#TokenHoldings#PriceTargets#BTC

Crypto M - Crypto News

@CryptoM · Post #65373 · 13.04.2026 г., 02:56

🚀 Daiwa Raises Gu Ming's Target Price to HKD 36 On April 13, according to Jin10, Daiwa released a research report raising the target price of Gu Ming (01364.HK) from HKD 35 to HKD 36, maintaining a 'buy' rating. This corresponds to a forecasted price-to-earnings ratio of 22 times for 2026. Daiwa noted that Gu Ming's takeaway proportion has decreased from a peak of 60% in the third quarter of last year to below 50%. The management expects this trend to continue, aiming to improve franchisee profitability through initiatives such as dine-in promotions, extending morning business hours, and increasing coffee sales. The firm has also raised its earnings per share forecast for Gu Ming from 2026 to 2028 by 6% to 12%. #Daiwa#GuMing#TargetPrice#HKD36#BuyRating#FranchiseeProfitability#EarningsForecast#TakeawayProportion#CoffeeSales#MorningBusinessHours