gpt4 book ai didi

python-3.x - 如何在python3中创建一个asyncio对象?

转载 作者:行者123 更新时间:2023-12-04 07:39:32 34 4
gpt4 key购买 nike

我很清楚我是如何在 python3 中使用 asyncio 的。

import asyncio
import time

async def do_something(number):
print(f"do something no.{number} at timestamp : {time.perf_counter():6.2f}")
await asyncio.sleep(1)
print(f"do something no.{number} ended at timestamp: {time.perf_counter():6.2f}")

async def main():
await asyncio.gather(
do_something(1),
do_something(2)
)

asyncio.run(main() )
但是,我不知道如何创建一个像 asyncio.sleep 这样的自己的“等待”对象。在这个“等待”中,我可以封装 urllib.request,不是吗?
有人可以发布一个例子吗?
非常感谢。

最佳答案

请看 this answer它使用旧的 yield for -based 语法,但思想保持不变:使用 asyncio.Futureloop.call_later()您可以将基于回调的代码转换为基于协程的代码:

import asyncio


async def my_sleep(delay):
fut = asyncio.Future()

loop = asyncio.get_event_loop()
loop.call_later(
delay,
lambda *_: fut.set_result(True)
)

return await fut


async def main():
await asyncio.gather(
my_sleep(1),
my_sleep(2),
my_sleep(3)
)
print('ok')


asyncio.run(main())
我相信, urllib.request是阻塞的并且不提供回调,因此它不能直接转换为基于协程的形式。处理这种情况的常用方法是在异步线程中运行它(参见 this answer 中的链接)。
但是,如果您只想制作异步 http 请求,请忘记以上所有内容并使用 aiohttp : 它是为此目的而创建的。

关于python-3.x - 如何在python3中创建一个asyncio对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67566763/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com