gpt4 book ai didi

Python 请求 : NewConnectionError

转载 作者:行者123 更新时间:2023-11-28 18:20:11 24 4
gpt4 key购买 nike

我正在使用 Python 和请求模块。但是每当我将“requests.get”与 URL 一起使用时,我都会收到错误消息:

Traceback (most recent call last):
File "python", line 15, in <module>
requests.exceptions.ConnectionError: HTTPSConnectionPool
(host='www.google.com', port=443): Max retries exceeded with url: /?
safe=active&gws_rd=ssl&safe=active (Caused by NewConnectionError
('<requests.packages.urllib3.connection.VerifiedHTTPSConnection object at
0x7f86809a16a0>: Failed to establish a new connection: [Errno -2] Name or
service not known',))

这是我的代码:

try:
import requests
except ImportError:
print ("Error: MOD.01")
r = requests.session()
url = "https://www.google.com/?safe=active&gws_rd=ssl&safe=active"
r2 = requests.get(url)

我的代码是否触发了错误?谢谢。

最佳答案

您遇到的错误是“名称或服务未知”。这意味着服务器找不到 www.google.com 的 IP 地址

确保你正确地复制/粘贴了所有内容,然后从运行 python 脚本的同一个 shell 中下一步,看看你是否可以 ping www.google.com

它可能很简单,因为没有为该机器/shell 配置网络(或 DNS)。

关于Python 请求 : NewConnectionError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45576930/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com