我正在编写一个尝试登录使用基本身份验证和请求的脚本。它通常起作用,但我需要捕获目前正在下降的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答案 0 :(得分:0)
我用
修复了它except:
print("Oops! Something went wrong, the ip is probably unreachable. Try agai")
pass