Функция 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
💼 Ethereum Foundation to Convert 5,000 ETH Into Stablecoins
The Ethereum Foundation announced via X that it will convert 5,000 ETH into stablecoins using CoW DAO’s TWAP feature to fund R&D, grants, and donations. #stablecoinlink
💳 RedotPay raises $107M in a Series B round led by Goodwater Capital to expand #stablecoin payment infrastructure.
➖➖➖➖➖➖➖➖➖
📣@cryptonewstel
✨Vip join⭐️
JUST IN: 🔥 Visa has launched a Stablecoins Advisory Practice to help institutions develop #stablecoin strategies.
➖➖➖➖➖➖➖➖➖
📣@cryptonewstel
✨Vip join⭐️
Paxos Trust is committed to bringing trust and transparency to the digital asset industry. See all of our monthly attestation reports on $PAX by top auditing firm @Withum. As of March 29, total funds of $118,048,457.66 USD and $PAX #stablecoin match exactly https://www.paxos.com/attestation/
Stablecoin yields, mainly generated via lending and borrowing activities, have become a topic of interest among traders, and you should join the conversation!
Learn more about #tether tokens and other #stablecoin yields⬇️
https://tether.to/where-do-stablecoin-yields-come-from/
📝 TokenPocket Monthly Report — July 2025
→ https://medium.com/@tokenpocket-gm/tokenpocket-monthly-report-july-2025-90a2476b9237
In July, TokenPocket focused on technological innovation and community activities, launching a series of measures centered around multi-chain functionality upgrades and enhanced security protection.
🎯#StablecoinWallet
TokenPocket provides the Gas Station service for the TRON network and the zero-fee USDT/USD1 transfer service on BNBCHAIN. This significantly reduces your #stablecoin transaction fee costs and enhances your trading experience.
🎯 LetsBONK on TokenPocket
Track all the trending LetsBonk tokens effortlessly, all in one place.
🎯 Supported XRP, HashKey Chain, and ink networks, making TokenPocket your first choice for a multi-chain wallet.
📍 All In One, All in TokenPocket
🔗https://tp.xyz
🔥🤩🤞
🗣#USDC Circle CEO says stablecoins now let people transact like messaging on WhatsApp, and major institutions agree stablecoins are the future of global money movement. #stablecoin
⚡️The Daily TON: Ethena Brings Innovative Stablecoin to the Ecosystem
#Ethena#stablecoin#TON
The Ethena project plans to enter the TON ecosystem, introducing its unique stablecoin USDe. Unlike traditional stablecoins, USDe uses a hedging strategy to manage volatility, offering users potential yields on their holdings. The project aims to integrate with blockchain ecosystems, including a Telegram mini-app for broader accessibility.
Source: link
@tonlines