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

Резултати

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

Пребарај: #migrationaccounting

当前筛选 #migrationaccounting清除筛选

🌟New avatar and sections for our channel! 🌟 Dear applicants! 🎉 We are happy to present you our new avatar! Now our channel looks even more attractive and modern💫. But that's not all! We have also created a number of informative sections to make the content more interesting and useful for you🤗. The following sections will be implemented on our channel: ❓#QuestionAnswer - ask your questions and get answers! 📚#MigrationAccounting - we will tell you about the peculiarities of migration registration and stay of foreign students on the territory of the Russian Federation. 🏆#Olympiad - you will get up-to-date information about the ONLINE-OLIMPIAD "FEMIDA" for citizens of foreign countries. 📜#AcceptingForeigners - we will provide you with an algorithm of admission to study at the Russian State University of Justice for foreign citizens under the quota of the Government of the Russian Federation. 🎓#StudentLife - in this section we share impressions and tips about student life. 📖#HistoricalInformation - learn interesting facts about the history of Russia. 🎉#RussianHolidays - you'll get an idea of Russian holidays and important traditions. 🗣️#RussianLanguage - this section will immerse you in the peculiarities of the Russian language and give you tips on how to learn it. Follow new posts, take part in discussions and feel free to ask questions! We are here to help you😊! Thank you for joining us! ❤️