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

TGINSIGHT SIMILAR POSTS

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

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

Функция 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

Hashtags

Резултати

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

Пребарај: #jio

当前筛选 #jio清除筛选

#人物 other (单个表情包放这) 国王排名 波吉 https://t.me/addstickers/king_ranking 小蓝和他的朋友们 https://t.me/addstickers/WeChat_LittleBlueAndHisFriends https://t.me/addstickers/XiaolanGif watora 和 potofu https://t.me/addstickers/watora_potofu Urara迷路帖 #video https://t.me/addstickers/urara_by_favorite_stickers_bot 加零 https://t.me/addstickers/jia0_hd 樱田诗露 桜田シロ https://t.me/addstickers/Sakurada_Shiro 义眼 丁真 https://t.me/addstickers/TenzingTsondu https://t.me/addstickers/tenzing https://t.me/addstickers/tenzing_plus https://t.me/addstickers/dingzhen_universe_by_luxiaoxun_bot https://t.me/addstickers/tenzing_mega 坤坤 鲲鲲 ikun 小黑子 https://t.me/addstickers/ikunsticker_666_by_luxiaoxun_bot https://t.me/addstickers/ikunsticker2_666_by_luxiaoxun_bot https://t.me/addstickers/wmikun https://t.me/addstickers/ikundongtu 爬 原作:蜜汁工坊 https://t.me/addstickers/GeiWoPa 美食广场里的女高中生在说啥 https://t.me/addstickers/msgcldngzszss 大时代 https://t.me/addstickers/greedtime https://t.me/addstickers/TheGreedOfManVideo#video FX战士久留美 韭留美 https://t.me/addstickers/FXSENSHI 超天酱 主播女孩重度依赖 https://t.me/addstickers/chaotianjiang https://t.me/addstickers/overdose228_by_fStikBot Liyuu https://t.me/addstickers/liyu0109 https://t.me/addstickers/liyu01092 雪糕糕 #jio https://t.me/addstickers/tsubasachyan https://t.me/addstickers/baisixuegaogao FGO https://t.me/addstickers/fgo2chibiii https://t.me/addstickers/fgoservant bilibili B站 22娘 33娘 https://t.me/addstickers/bili2233 崩坏3 https://t.me/addstickers/honkai_sticker https://t.me/addstickers/Teriri_Pack https://t.me/addstickers/Elysia_bh3 Ryukko https://t.me/addstickers/VR_Chat Kero https://t.me/addstickers/Kero_VR noy娘 https://t.me/addstickers/noygirl Lakr233 https://t.me/addstickers/Lakr233_0 软糖酱 https://t.me/addstickers/lxbot https://t.me/addstickers/missedtank helltaker https://t.me/addstickers/heltek666 梦璃 星梦璃月 https://t.me/addstickers/ritsuki 毒霸姬 https://t.me/addstickers/xiaodubaji https://t.me/addstickers/KingsoftKISGirl minahoshi https://t.me/addstickers/XxyujiVsMinahoshiChan 魔法少女小圆 https://t.me/addstickers/Akemi_Homura FX战士久留美 https://t.me/addstickers/FXSENSHI

🦅 [ perspective ix ]

@perspectiveix · Post #1990 · 04.05.2020 г., 17:00

Tech, Media, and Business News Headlines—Day 3 👉#Intel is in talks to acquire #Moovit for ~$1B (link) 👉#Uber to require masks or face coverings for drivers and passengers in certain markets (link) 👉 Security lapse at #India’s #Jio exposed #coronavirus symptom checker results (link) 👉#Amazon, #Flipkart, #Ola and #Uber begin to resume their services in #India (link) 👉#UberEats exits seven markets (link) 👉 The 13-inch #MacBook Pro gets #Apple’s much-improved keyboard (link) 👉 Poynter Institute’s International Fact-Checking Network launches chatbot on #WhatsApp to debunk thousands of #coronavirus-related hoaxes (link) 📰@iXDaily by @PerspectiveIX 💌Weekly Newsletter.

Desi Memes Funny Jokes

@desi_memes_funny_jokes · Post #4983 · 10.07.2024 г., 03:47

Paisa hai to kya kuch nahi ho sakta🤣 #matstudios#sochobolopao#indianmemes#indianfunny#bhagambhag#justinbieber#mukeshambani#bollywoodcomedy#bollywoodedits#bollywoodmemes#ambani#ambaniwedding#jio