首先是代码:
package.json
根据我的上一个问题,我关注此博文: https://pawelmhm.github.io/asyncio/python/aiohttp/2016/04/22/asyncio-aiohttp.html
我尝试尽可能地使我的代码适应示例实现,但是这段代码仍然没有发出任何请求并按照我的意愿打印COPY
中的标题。
有人可以发现这段代码有什么不对吗?
答案 0 :(得分:2)
response.headers
是一个常规属性,无需在调用之前等待
asyncio.wait
接受期货清单并返回(done, pending)
对。
您似乎应该使用await wait()
(gather doc)
await asyncio.gather(*tasks)
来电