我正在运行aiohttp服务器。它正在一个接一个地处理请求,并且工作正常。
from aiohttp import web
async def hello(request):
return web.Response(text='done')
app = web.Application()
app.add_routes([web.get('/', hello)])
web.run_app(app)
现在,我需要一个一个地发出两个缓慢的传出请求。我正在考虑将aiohttp客户端代码放入hello函数中。因此,当服务器等待出站请求返回时,它可以处理下一个入站请求。
async def hello(request):
async def fetch(session, url):
with async_timeout.timeout(10):
async with session.get(url) as response:
return await response.text()
async def main(loop):
async with aiohttp.ClientSession(loop=loop) as session:
html1 = await fetch(session, URL1)
html2 = await fetch(session, URL2)
loop = asyncio.get_event_loop()
loop.run_until_complete(main(loop))
return web.Response(text='done')
上述html1和html2将同时消失。第一次提取完成后,如何进行第二次提取?还是其他一些设计可以帮助您?