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

Резултати

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

Пребарај: #aves

当前筛选 #aves清除筛选
Estudiantes MVZ

@estudiantesmvz · Post #1342 · 17.02.2022 г., 16:30

Diplomado en manejo y medicina de aves exóticas Aporte del doctor Victor Guerrero Torres (autor) 🙏 https://drive.google.com/file/d/1QGO_RM2gdO8DBgk6O1Y3RWmi2z1JtCJh/view?usp=drivesdk #clinica #aves

Libreware

@libreware · Post #1032 · 31.01.2022 г., 02:36

Aves Gallery and metadata explorer app built with fluter Aves can handle all sorts of images and videos, including your typical JPEGs and MP4s, but also more exotic things like multi-page TIFFs, SVGs, old AVIs and more! It scans your media collection to identify motion photos, panoramas (aka photo spheres), 360° videos, as well as GeoTIFF files. Navigation and search is an important part of Aves. The goal is for users to easily flow from albums to photos to tags to maps, etc. https://github.com/deckerst/aves Download : https://github.com/deckerst/aves/releases/ https://apt.izzysoft.de/fdroid/index/apk/deckers.thibault.aves #Aves#Gallery 📡@foss_Android

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