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

Резултати

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

Пребарај: #uscongress

当前筛选 #uscongress清除筛选
EdgeMarket.AI 📣

@edgemarketai · Post #8180 · 12.05.2026 г., 17:31

🇺🇸 US Congress vs Trump’s $1.5 Trillion Defence Budget The market is live on EdgeMarket. Participants are now predicting whether Congress will approve the proposed historic defence expansion package covering: ✈️ Advanced fighter programs 🚢 Naval expansion 🛰 Defence technology 🤖 AI warfare systems 🛡 National security infrastructure Current Market Sentiment: ✅ YES — 61% ❌ NO — 39% Take your position now: https://edgemarket.ai/bnb/social-media/us-congress-aproval-of-trumps-15-trillion-defence-budget/statistics/69f4861273c4a76eb0961b8f Predict. Stake. Settle. #EdgeMarket#USCongress#Trump#Defence#PredictionMarkets#Web3

Crypto M - Crypto News

@CryptoM · Post #64636 · 09.04.2026 г., 12:15

🚀 U.S. Congress Nears Decision on Financial Framework Legislation The U.S. Congress is approaching a significant milestone in its efforts to establish a framework for the future development of the financial industry. According to BlockBeats, U.S. Treasury Secretary Besent announced on April 9 that Congress has spent nearly five years working on this initiative. It is now time for Senate Banking Committee Republicans to review and advance the CLARITY Act for U.S. President Donald Trump's signature. #USCongress#FinancialLegislation#CLARITYAct#Finance#USPolitics#Treasury#BankingCommittee

Crypto M - Crypto News

@CryptoM · Post #64503 · 09.04.2026 г., 04:05

🚀 U.S. Treasury Secretary Urges Congress to Pass CLARITY Act for Digital Asset Regulation U.S. Treasury Secretary Besant has called on Congress to swiftly pass the CLARITY Act to establish a clear regulatory framework for digital assets. According to Foresight News, the global market value of digital assets has fluctuated between $2 trillion and $3 trillion over the past year, with approximately one-sixth of Americans holding some form of digital asset. The application of blockchain technology in payments, settlements, and physical asset exchanges continues to expand. Cryptocurrencies are no longer niche experiments but are widely adopted technologies globally. The United States must take proactive measures to continue leading in the establishment of rules in this field. #DigitalAssets#Cryptocurrency#Blockchain#USTreasury#CLARITYAct#Regulation#Finance#USCongress#GlobalMarket#Technology