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

Резултати

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

Пребарај: #mantlejourney

当前筛选 #mantlejourney清除筛选
TokenPocket

@tokenpocket_channel · Post #764 · 06.09.2023 г., 02:43

💥Only 3 days left! Ready to grab your share of the $10,000 $MNT Prize Pool? Claim your OAT on Galxe and take your prize seat! 👉https://galxe.com/TokenPocket/campaign/GCtvyUu2RJ #MantleJourney#TokenPocket 【Details】https://twitter.com/TokenPocket_TP/status/1699251368022987065 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #778 · 12.09.2023 г., 10:47

#MantleCampaign We got 8k participants in the past two weeks and exceeded 7k users who are eligible to get the $MNT! 🏆 Winner List ⬇️⬇️ https://docs.google.com/spreadsheets/d/1W9XGkL2nFj7t5UdQqrHafmHydn2GbfwaVpM7UlI_Q20/edit#gid=0 The rewards have been distributed and please check your #TokenPocket 0xMantle wallet address. 🚪Get your $MNT as the ticket and open the door of #MantleJourney! 🏞 Mint your MJSBT: http://journey.mantle.xyz Thank you once again for your active participation! Stay tuned for more exciting events in the future! 🔥 【Details】https://twitter.com/TokenPocket_TP/status/1701547387846627436 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #834 · 10.10.2023 г., 10:14

🆕 0xMantle Bridge now fully supports TokenPocket login, and the official bridge is also listed on the TokenPocket #Mantle Hot #DApp List! 👉https://bridge.mantle.xyz/ 🔥You can access Mantle Bridge with your TokenPocket wallet and enjoy the #MantleJourney! 👉https://extension.tokenpocket.pro/#/ 👉https://www.tokenpocket.pro/en/download/app #TokenPocket#MantleJourney 【Details】https://twitter.com/TokenPocket_TP/status/1711686131371413918 【Powered By】Crypto Box

TokenPocket

@tokenpocket_channel · Post #832 · 10.10.2023 г., 10:10

🆕 Mantle Bridge now fully supports TokenPocket login, and the official bridge is also listed on the TokenPocket #Mantle Hot #DApp List! 🔥You can access Mantle Bridge with your TokenPocket wallet and enjoy the #MantleJourney! 👉https://extension.tokenpocket.pro/#/ 👉https://www.tokenpocket.pro/en/download/app #TokenPocket#MantleJourney 【Details】https://twitter.com/TokenPocket_TP/status/1711685010049368156 【Powered By】Crypto Box