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

Резултати

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

Пребарај: #treasurenft

当前筛选 #treasurenft清除筛选
SingSing Announcement

@singsingchannel · Post #710 · 17.07.2024 г., 02:31

Congratulations to all Treasure NFT Session 6 owners! 🎉 Quickly unbox your NFT for a chance to receive $COW. Please note: if you don't unbox within 48 hours of receiving your Treasure NFT, we cannot guarantee the $COW reward for you. 🚀 #NFT#Web3#TreasureNFT

SingSing Announcement

@singsingchannel · Post #690 · 09.07.2024 г., 16:27

🎉 Congratulations to our lucky Treasure NFT holders who have unboxed amazing ETH rewards! 🪙✨List Treasure NFTs still have many other benefits, so don’t be disappointed if you didn't get ETH this time. 👉 Exclusive Airdrop Access: Holding a Treasure NFT grants you a seat in our exclusive airdrop event. 👉Free to Trade: Buy a Treasure, and you can choose to keep it unopened to sell on OpenSea for a higher price. 👉Unlock treasures to win amazing rewards: ✅Pioneer NFT ✅150 RUBY + 100 $COW in Cowtopia (All treasure NFT Owners who unbox a $COW reward will be added to the Closed Beta Test Whitelist of Cowtopia). ✅300 RUBY ✅ETH Keep exploring and unboxing for more surprises. Read more and open treasure at: X Post #NFT#TreasureNFT#CryptoRewards#ETH

SingSing Announcement

@singsingchannel · Post #735 · 24.07.2024 г., 04:03

🔥 Treasure NFT Session 7 is officially SOLD OUT! 🔥 🚨 Important announcement: Treasure NFT sales will be temporarily paused to allow users to utilize RUBY for activities in partner games using the SingSing SDK. Get ready for exciting experiences ahead! 🚀 #SingSing#TreasureNFT#RUBY#Gaming#Web3

SingSing Announcement

@singsingchannel · Post #709 · 17.07.2024 г., 02:15

Treasure NFT Session 6 is officially SOLD OUT! 🎉 Thank you for your amazing support. We're thrilled to announce that the whitelist for Session 7 is now OPEN! To be eligible: 1️⃣Comment on this Post, tag 3 friends. 2️⃣Fill out the form with your wallet address and the comment link👉form (this form will be closed at 14:00 UTC - July 22) Don’t miss your chance to be part of the next adventure. 🚀 Note: The additional Whitelist Pool will be opened in next few hours! #TreasureNFT#SoldOut#Session6#Whitelist#NFTCommunity

SingSing Announcement

@singsingchannel · Post #694 · 11.07.2024 г., 10:54

Treasure NFT Session 5 is officially SOLD OUT! 🎉 Thank you for your amazing support. We're thrilled to announce that the whitelist for Session 6 is now OPEN! To be eligible: 1️⃣Comment on this Post, tag 3 friends. 2️⃣Fill out the form with your wallet address and the comment link👉https://forms.gle/qutLw7av9qbzCNVm8 (this form will be closed at 14:00 UTC - July 15) Don’t miss your chance to be part of the next adventure. 🚀 #TreasureNFT#SoldOut#Session5#Whitelist#NFTCommunity