Python请求MaxRetryError引发连接错误adapters.py(如何捕获BAD连接?)

时间:2014-02-04 21:10:09

标签: python connection python-requests

我正在编写一个尝试登录使用基本身份验证和请求的脚本。它通常起作用,但我需要捕获目前正在下降的ip。当我尝试连接到这样的断开链接时:

While ..... :
       For .. in ..
          .....
          with r = requests.get('http://' + ip , auth=(username, password))
          ...
       Except e

它会引发这样的错误。

文件“C:\ Python33 \ Lib \ site-packages \ requests \ adapters.py”,第378行,发送   引发ConnectionError(e)

你能帮帮我吗? 邮寄帖子:D

1 个答案:

答案 0 :(得分:0)

我用

修复了它
except:
                print("Oops!  Something went wrong, the ip is probably unreachable. Try agai")
                pass