我認爲你可以使用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:做得非常好!非常感謝你!我已經得到了dir(e)和e.args,但是當時我停止了將e.args的元素誤認爲字符串,我不得不使用正則表達式來提取我想要的信息。 – ArtOfWarfare
使用假的URL也是生成錯誤的好方法。我一直在使用真實的網址,但是我的互聯網被關閉了......不方便在產生錯誤和研究它們之間來回切換。 – ArtOfWarfare
哦,我的領主 - 謝謝你謝謝 - 這個錯誤一直在推動着我! –