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

Categories

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

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

image.png


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...