【解决报错】‘async with‘ outside async function
【摘要】
【解决报错】‘async with’ outside async function
import aiohttp
async with aiohttp.ClientSession() as sess...
【解决报错】‘async with’ outside async function
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())
- 1
- 2
- 3
- 4
- 5
- 6
- 7
运行之后,会出现如题所示错误,解决方法为:
将async with xxx as xxx:这个结构放在async def xxx()函数内
import aiohttp
import asyncio
async def get_text():
async with aiohttp.ClientSession() as session:
async with session.get('http://httpbin.org/get') as resp:
print(resp.status)
print(await resp.text())
def main():
loop = asyncio.get_event_loop()
task = get_text()
loop.run_until_complete(task)
loop.close()
if __name__ == '__main__':
main()
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
这样就解决了这个问题
文章来源: luckystar.blog.csdn.net,作者:爱打瞌睡的CV君,版权归原作者所有,如需转载,请联系作者。
原文链接:luckystar.blog.csdn.net/article/details/123106640
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)