详解Python requests 超时和重试的方法-转载
【推荐阅读】微服务还能火多久?>>> 转自: https://www.cnblogs.com/gl1573/p/10129382.html 转自:https://blog.csdn.net/weixin_39198406/article/details/81482082 网络请求不可避免会遇上请求超时的情况,在 requests 中,如果不设置你的程序可能会永远失去响应。 超时又可分为连接超时和读取超时。 连接超时 连接超时指的是在你的客户端实现到远端机器端口的连接时(对应的是 connect() ),Request 等待的秒数。 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 import time import requests url = ' http://www.google.com.hk ' print (time.strftime( '%Y-%m-%d %H:%M:%S' )) try : html = requests.get(url, timeout = 5 ).text print ( 'success' ) except requests.exceptions.RequestException as e: print (e) print (time.strftime( '%Y-%m-%d %H:%M:%S' )) 因为 google 被墙了