Отдельно разберём TaskGroup, который пришел на замену gather в Python 3.11.
Ключевые отличия
▫️create_task() возвращает объект asyncio.Task, у которого есть соответствюущие методы управления. То есть у нас больше контроля
▫️это контекстный менеджер, который гарантирует что все таски будут остановлены по выходу из контекста
▫️ошибка автоматически отменяет незавершенные задачи,
▫️except* передает нам ExceptionGroup, в котором каждую ошибку можно обработать отдельно
import asyncio
import random
async def do_it() -> str:
if random.random() < 0.1:
raise ValueError('Oops')
delay = random.uniform(0.5, 1.5)
await asyncio.sleep(delay)
return delay
async def main():
try:
async with asyncio.TaskGroup() as tg:
for _ in range(10):
tasks.append(tg.create_task(do_it()))
for t in tasks:
print(t.result())
except *ValueError as e:
for err in e.exceptions:
print(err)
asyncio.run(main())
Рекомендую изучить страницу Coroutines and Tasks из документации, где представлено больше интересных примеров и механизмов
- таймауты
- отмена задач
- создание задач из другого потока
#async
JUST IN : 🚨
💰An Ethereum OG just deposited another 18,000 $ETH($54.78M) into #Bitstamp.
He still holds 66,252 $ETH($201M) — with total profits of ~$270M.
➖➖➖➖➖➖➖➖➖
📣@cryptonewstel
✨Vip join⭐️
🚨 Vitalik Buterin transferred another 2,000 $ETH ($3.12M) to address 0x556 10 hours ago.
➡️ Notably, the Ethereum’s co-founder appeared to have deposited 2,002 $ETH ($3.33M) to #Bitstamp and sold 100 $ETH for 173K $USDC since August 25 (18 days ago) via address 0x556.
👉 More details: https://platform.spotonchain.ai/signal-details/vitalik-buterin-may-plan-deposit-more-eth-to-bitstamp-561
👉 If you have any questions, feel free to discuss in our discord group: https://discord.com/invite/Xh7cReej7n
🚨 Vitalik Buterin transferred 999 $ETH ($1.63M) from better-known address 0xD04 to 0x556 20 hours ago.
➡️ Notably, the Ethereum’s co-founder appeared to have deposited 1,602 $ETH ($2.68M) to #Bitstamp and sold 100 $ETH for 173K $USDC over the past 8 days via address 0x556.
👉 More details: https://platform.spotonchain.ai/signal-details/vitalik-buterin-sold-mkr-and-may-deposit-eth-to-bitstamp-soon-531
👉 If you have any questions, feel free to discuss in our discord group: https://discord.com/invite/Xh7cReej7n
We are pleased to announce that EURt will be available on #Bitstamp🎉
The euro-pegged stablecoin, will provide a liquid, stable and trusted means of obtaining exposure to the single European currency to Bitstamp’s users⬇️
https://tether.to/tether-tokens-eurt-will-be-available-on-bitstamp/