Отдельно разберём 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
RT @FabrizioRomano: 🚨 Juventus would be ready offer a longer contract to Alisson (current deal at #LFC runs out in 2027).
Alisson, tempted…
— Fabrizio Romano (@FabrizioRomano)
May 10, 2026
🚨 Juventus would be ready offer a longer contract to Alisson (current deal at #LFC runs out in 2027).
Alisson, tempted by this option… but leaving the decision up to Liverpool — as Reds will already lose Salah & Robertson this summer.
🎥https://t.co/iPYOHjc1mwhttps://t.co/V3suCKQn1b
— Fabrizio Romano (@FabrizioRomano)
Apr 27, 2026
🚨⚪️⚫️ Juventus want to sign a top GK this summer and Alisson is seen as dream target.
Liverpool extended his contract until 2027 but talks with Alisson and Mamardasvhili’s camp will take place in the next weeks.
Alisson likes the idea of returning to Italy but respects #LFChttps://t.co/WtWTr6aKIK
— Fabrizio Romano (@FabrizioRomano)
Apr 22, 2026
🔴 EDGE MARKET LIVE
Manchester United vs Liverpool
📅 May 3, 2026
History. Pressure. Global attention.
One match. One outcome.
Enter the market:
https://edgemarket.ai/bnb/football/man-united-vs-liverpool/statistics/69f1e1e3422739f6001ff5e4
Conviction meets result.
#MUFC#LFC#PremierLeague#Football#EdgeMarket
Will Liverpool finish top 4 in 2025/26? 👀
Squad depth, injuries, manager adaptation, fixture pressure early predictions always reveal where confidence sits.
Yes or no ?
#Liverpool#LFC#PremierLeague#PredictionMarkets#SportsPrediction#EdgeMarket#TONBlockchain