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

Пребарај: #arvr

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

@venturevillagewall · Post #4143 · 13.02.2025 г., 19:00

Steve Yun Speaks at Consensus HK On February 20, Steve Yun from TON Foundation will present at Consensus HK, discussing 'Emerging Markets on the Road to Financial Freedom.' Join to explore DeFi's future and the impact of evolving regulations on Web3. Details here. ⚡️ OpenSea announces OS2 beta version and airdrop. Read more 🚓 In Thailand, Russians arrested for stealing Bitcoin worth $16.5 million. Read more 🧠 A look into the Metaverse and AR/VR projects you might have missed. Read more 🐋 VanEck says some US states will buy $23.5 billion in Bitcoin. Read more 👀 A new Bitcoin-ETF linked structured bond launches in Russia. Read more 🧐 JPMorgan identifies condition for Tether's compliance with US regulations. Read more ❌ Illegal Bitcoin farm shut down near Irkutsk. Read more 🤖 Sam Altman discusses features of GPT-4.5 and GPT-5. Read more 💫 BNB recovered losses following 2025 roadmap release. Read more 🔎 Ethereum Foundation allocates $120 million to DeFi protocols. Read more 👾 WLFI co-founder's X-account hacked to promote a scam. Read more 🔥 Former Greek finance minister criticizes Bitcoin maximalists. Read more #Finance#DeFi#Web3#Bitcoin#OpenSea#Crypto#Ethereum#EthereumFoundation#Cryptocurrency#Blockchain#Thailand#Regulation#CryptoNews#SamAltman#AI#Innovation#Technology#Investment#Metaverse#ARVR#VanEck