猿问

aiohttp:如何发出简单的 http 请求

我正在探索 aiohttp 的异步 http 请求。


aiohttp网站上的客户端快速入门 建议将此代码作为最小示例:


import aiohttp

async with aiohttp.ClientSession() as session:

    async with session.get('http://httpbin.org/get') as resp:

        print(resp.status)

        print(await resp.text())

对我来说,python 3.6.5 这导致


与 aiohttp.ClientSession() 作为会话异步:


语法错误:无效语法


我在这里错过了什么吗?


任何帮助表示赞赏!谢谢你。


编辑:

我在做测试。首先我意识到我需要 python 3.7。所以我切换了,现在错误信息是:


与 aiohttp.ClientSession() 作为会话异步:


SyntaxError: 'async with' 外部异步函数


拉风的咖菲猫
浏览 123回答 1
1回答
随时随地看视频慕课网APP

相关分类

Python
我要回答