@QuietWorld · Post #7387 · 11.06.2020 г., 07:56
The way you dress is an expression of your personality 🌻 Alessandro Michele #personality#quotes @quietworld🍃
Hashtags
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
Пребарај: #personality
@QuietWorld · Post #7387 · 11.06.2020 г., 07:56
The way you dress is an expression of your personality 🌻 Alessandro Michele #personality#quotes @quietworld🍃
Hashtags
@QuietWorld · Post #6665 · 08.10.2019 г., 08:46
“In the end, it’s your actions, how you respond to circumstance, that reveals your character.” #quotes#personality @quietworld🍃
Hashtags
@QuietWorld · Post #6827 · 31.10.2019 г., 06:30
🔖People often say that this or that person has not yet found himself. But the self is not something that one finds. It is something one creates. #personality#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #6901 · 13.11.2019 г., 01:22
http://forest-mt.seekrtech.com/ #random#personality @quietworld🍃
Hashtags
@QuietWorld · Post #6723 · 17.10.2019 г., 06:30
To have doubted one's own first principles is the mark of a civilized man. —Oliver Wendell Holmes Jr. #quotes#attitude#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7135 · 10.01.2020 г., 10:06
1 or 2? I go with 2 😉 & I love it! 😂 #random#poll#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7811 · 14.05.2021 г., 02:10
Signs of Gaslighting Source: BetterHelp #facts#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7810 · 14.05.2021 г., 02:10
Signs of Gaslighting Source: BetterHelp #facts#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7809 · 14.05.2021 г., 02:05
Signs of Gaslighting Source: BetterHelp #facts#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7052 · 10.12.2019 г., 03:22
sometimes I'm surprised at how I can go back and forth from being like a mature adult around a group of people to being like a childlike adult around another particular group of people 😐 have you ever felt the same way about yourself?👀 #poll#attitude#personality @quietworld🍃
Hashtags
@QuietWorld · Post #7271 · 20.04.2020 г., 05:12
“Parents can only give good advice or put them on the right paths, but the final forming of a person's character lies in their own hands.” 🍃 Anne Frank #life#reminder#personality#attitude @quietworld🍃
@QuietWorld · Post #6710 · 14.10.2019 г., 23:30
The better we feel about ourselves, the fewer times we have to knock somebody else down to feel tall. #quotes#life#people#personality @quietworld🍃
Hashtags