gpt4 book ai didi

python aiohttp 进入现有的事件循环

转载 作者:行者123 更新时间:2023-11-28 21:34:20 24 4
gpt4 key购买 nike

我正在测试 aiohttp 和 asyncio。我希望相同的事件循环具有套接字、http 服务器、http 客户端。

我正在使用此示例代码:

@routes.get('/')
async def hello(request):
return web.Response(text="Hello, world")

app = web.Application()
app.add_routes(routes)
web.run_app(app)

问题是 run_app正在阻塞。我想将 http 服务器添加到我使用以下方法创建的现有事件循环中:
asyncio.get_event_loop()

最佳答案

The problem is run_app is blocking. I want to add the http server into an existing event loop

run_app只是一个方便的API。要挂接到现有的事件循环,您可以直接实例化 AppRunner :
loop = asyncio.get_event_loop()
# add stuff to the loop
...

# set up aiohttp - like run_app, but non-blocking
runner = aiohttp.web.AppRunner(app)
loop.run_until_complete(runner.setup())
site = aiohttp.web.TCPSite(runner)
loop.run_until_complete(site.start())

# add more stuff to the loop
...

loop.run_forever()
在 asyncio 3.8 及更高版本中,您可以使用 asyncio.run() :
async def main():
# add stuff to the loop, e.g. using asyncio.create_task()
...

runner = aiohttp.web.AppRunner(app)
await runner.setup()
site = aiohttp.web.TCPSite(runner)
await site.start()

# add more stuff to the loop, if needed
...

# wait forever
await asyncio.Event().wait()

asyncio.run(main())

关于python aiohttp 进入现有的事件循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53465862/

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