- A+
所属分类:Python
时常报错:
HTTPConnectionPool(host='dds.cr.usgs.gov', port=80): Max retries exceeded with url:
-
解决办法:
1、增加重试连接次数
requests.adapters.DEFAULT_RETRIES = 5
2、关闭多余的连接
requests使用了urllib3库,默认的http connection是keep-alive的,requests设置False关闭。
操作方法
s = requests.session() s.keep_alive = False
以上是Python requests“Max retries exceeded with url” error的内容,更多 requests exceeded retries Python error with MAX URL 的内容,请您使用右上方搜索功能获取相关信息。
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫