Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.2k views
in Technique[技术] by (71.8m points)

Python idle运行requests模块会报验证错误

简单的引入requets模块
import requests
requests.get('https://baidu.compile')

以IDLE执行就会报如下错误, 但是在自带终端中执行就没有任何问题.
环境版本:
windows10
python3.9

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

证书问题。
加个参数就可以了,可能会出现一个警告,忽略即可。
res = requests.request("post", request_url,Verify=False)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...