python-3.x - 将 aiohttp 请求与其响应相关联

标签 python-3.x python-requests python-asyncio aiohttp

很简单,我只想将来自 aiohttp 的回复联系起来。带有标识符(例如字典键)的异步 HTTP 请求,以便我知道哪个响应对应于哪个请求。

例如,下面的函数调用后缀为 dict 值 1 的 URI。 , 23 .如何修改它以返回与每个结果关联的键?我只需要能够跟踪哪个请求是哪个......对于熟悉 asyncio 的人来说无疑是微不足道的。

import asyncio
import aiohttp

items = {'a': '1', 'b': '2', 'c': '3'}

def async_requests(items):
    async def fetch(item):
        url = 'http://jsonplaceholder.typicode.com/posts/'
        async with aiohttp.ClientSession() as session:
            async with session.get(url + item) as response:
                return await response.json()

    async def run(loop):
        tasks = []
        for k, v in items.items():
            task = asyncio.ensure_future(fetch(v))
            tasks.append(task)
        responses = await asyncio.gather(*tasks)
        print(responses)

    loop = asyncio.get_event_loop()
    future = asyncio.ensure_future(run(loop))
    loop.run_until_complete(future)

async_requests(items)

输出(缩写):
[{'id': 2, ...}, {'id': 3, ...}, {'id': 1...}]

所需的输出(例如):
{'b': {'id': 2, ...}, 'c': {'id': 3, ...}, 'a': {'id': 1, ...}}

最佳答案

将 key 传递给 fetch() , 以相应的响应返回它们:

#!/usr/bin/env python
import asyncio
import aiohttp  # $ pip install aiohttp

async def fetch(session, key, item, base_url='http://example.com/posts/'):
    async with session.get(base_url + item) as response:
        return key, await response.json()

async def main():
    d = {'a': '1', 'b': '2', 'c': '3'}
    with aiohttp.ClientSession() as session:
        ####tasks = map(functools.partial(fetch, session), *zip(*d.items()))
        tasks = [fetch(session, *item) for item in d.items()]
        responses = await asyncio.gather(*tasks)
    print(dict(responses))

asyncio.get_event_loop().run_until_complete(main())

关于python-3.x - 将 aiohttp 请求与其响应相关联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36893468/

相关文章:

Python3 PyQt5 setEnabled 的 QAction 导致崩溃

python - 在异步程序中将 Web 响应写入文件

python-3.x - requests.exceptions.MissingSchema : Invalid URL 'None' : No schema supplied while trying to find broken links through Selenium and Python

python - 是否可以限制异步中同时运行的协程数量?

python - 通过参数传递异步循环或使用默认异步循环

python-3.x - python :find a number in a list (smaller but the biggest one)

python - 返回列表字典中的值

python - 请求库在 Python 2 和 Python 3 上崩溃

python - 如何将请求(python)cookie保存到文件中?

python - 如何在异步中并发运行任务?