Aiohttp没有执行任何请求

时间:2017-09-09 16:21:34

标签: python asynchronous aiohttp

首先是代码:

package.json

根据我的上一个问题,我关注此博文: https://pawelmhm.github.io/asyncio/python/aiohttp/2016/04/22/asyncio-aiohttp.html

我尝试尽可能地使我的代码适应示例实现,但是这段代码仍然没有发出任何请求并按照我的意愿打印COPY中的标题。

有人可以发现这段代码有什么不对吗?

1 个答案:

答案 0 :(得分:2)

response.headers是一个常规属性,无需在调用之前等待

另一方面,

asyncio.wait接受期货清单并返回(done, pending)对。 您似乎应该使用await wait()gather doc

替换await asyncio.gather(*tasks)来电