【Python】Python中安装以及使用requests

【Python】Python中安装以及使用requests,第1张

1、安装requests

打开cmd,输入以下命令

pip install requests
//如果提示需要更新,执行如下命令
C:\Python310\python.exe -m pip install --upgrade pip

2、在python中使用
r = request.post(url, data=data, headers=headers)
json_data = json.loads(r.text)
3、调试时遇到问题

module 'urllib.request' has no attribute 'post'

4、解决方案

在py文件中导入import requests

5、执行结果

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/717240.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-25
下一篇 2022-04-25

发表评论

登录后才能评论

评论列表(0条)

保存