TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #402 · 22 дек.

Отдельно разберём 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

Hashtags

Резултати

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

Пребарај: #september

当前筛选 #september清除筛选
悦读「优质少量RSS聚合」

@Dailyrss · Post #13121 · 28.09.2025 г., 00:45

Wikipedia每日一图(#September 28, 2025)https://ift.tt/Jhp6sa7 French chemist and microbiologist Louis Pasteur photographed by Nadar. Renowned for his scientific discoveries, he saved millions by developing vaccines for rabies and anthrax, as well as the process of pasteurization. He died on this day 130 years ago.. 了解更多 . #Wikipedia每日一图

悦读「优质少量RSS聚合」

@Dailyrss · Post #13120 · 27.09.2025 г., 00:45

Wikipedia每日一图(#September 27, 2025)https://ift.tt/suPWQxz Panoramic view of the west bank of Nigeen Lake in Srinagar, India, with the distant Middle Himalayan Pir Panjal mountain range in the background. The city, situated on the banks of the Jhelum river and several lakes in the Himalayan Kashmir Valley, is the summer capital of Jammu and Kashmir and the northernmost million-plus city of India.. 了解更多 . #Wikipedia每日一图

悦读「优质少量RSS聚合」

@Dailyrss · Post #13119 · 26.09.2025 г., 00:45

Wikipedia每日一图(#September 26, 2025)https://ift.tt/0kyxNdY An image of Arab twin brothers Saints Cosmas and Damian from the Grandes Heures of Anne of Brittany. As ancient physicians, they are depicted holding tools of their profession. Today is their feast day on the General Roman Calendar.. 了解更多 . #Wikipedia每日一图

123•••56
ПретходнаСтраница 1 од 6Следна