我正在捕捉并打印Python Requests ConnectionErrors,只需:
except requests.exceptions.ConnectionError as e:
logger.warning(str(e.message))
打印出如下消息:
HTTPSConnectionPool(host='10.100.24.16', port=443): Max retries exceeded with url: /api/datastores/06651841-bbdb-472a-bde2-689d8cb8da19 (Caused by <class 'socket.error'>: [Errno 61] Connection refused)
和
HTTPSConnectionPool(host='10.100.24.16', port=443): Max retries exceeded with url: /api/datastores/06651841-bbdb-472a-bde2-689d8cb8da19 (Caused by <class 'socket.error'>: [Errno 65] No route to host)
还有很多其他人。我想知道的是,什么是最好的,最Pythonic的方式来获得在消息中显示的错误?我希望有一个可靠的系统来捕获问题,并尽可能向用户提供有用和相关的错误消息。据我所知,ConnectionError是BaseException的间接死因,没有新的属性或方法被添加到BaseException提供的范围之外。我对使用正则表达式犹豫不决,因为在我看来,我冒着假设所有错误消息在所有地区以相同方式格式化的风险。
答案 0 :(得分:26)
我认为您可以使用e.args[0].reason.errno
访问它。
这可能是在某处记录的,但通常当我必须追踪这样的东西时,我只是在控制台上尝试并稍微挖掘一下。 (我使用IPython所以很容易进行选项卡检查,但是让我们试试吧)。
首先,让我们使用
生成错误import requests
try:
requests.get("http://not.a.real.url/really_not")
except requests.exceptions.ConnectionError as e:
pass
应该在e
:
>>> e
ConnectionError(MaxRetryError("HTTPConnectionPool(host='not.a.real.url', port=80): Max retries exceeded with url: /really_not (Caused by <class 'socket.gaierror'>: [Errno -2] Name or service not known)",),)
信息通常在args
:
>>> e.args
(MaxRetryError("HTTPConnectionPool(host='not.a.real.url', port=80): Max retries exceeded with url: /really_not (Caused by <class 'socket.gaierror'>: [Errno -2] Name or service not known)",),)
>>> e.args[0]
MaxRetryError("HTTPConnectionPool(host='not.a.real.url', port=80): Max retries exceeded with url: /really_not (Caused by <class 'socket.gaierror'>: [Errno -2] Name or service not known)",)
在里面看,我们看到了:
>>> dir(e.args[0])
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__',
'__getitem__', '__getslice__', '__hash__', '__init__', '__module__', '__new__',
'__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__setstate__', '__sizeof__',
'__str__', '__subclasshook__', '__unicode__', '__weakref__', 'args', 'message', 'pool',
'reason', 'url']
reason
看起来很鼓舞人心:
>>> e.args[0].reason
gaierror(-2, 'Name or service not known')
>>> dir(e.args[0].reason)
['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__',
'__getitem__', '__getslice__', '__hash__', '__init__', '__module__', '__new__',
'__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__setstate__', '__sizeof__',
'__str__', '__subclasshook__', '__unicode__', '__weakref__', 'args', 'errno', 'filename',
'message', 'strerror']
>>> e.args[0].reason.errno
-2
答案 1 :(得分:0)
我在使用python 3.6获得相同结果时遇到麻烦,并要求2.18。我设法使用http
和socket
模块获得了errno:
import socket, html
try:
http.client.HTTPConnection('invalid').connect()
except (socket.gaierror, ConnectionError) as e:
print(e.errno)
希望它对某人有帮助。