【python requests错误】Max retries exceeded with url解决

错误类型如下:

Max retries exceeded with url
version=1 (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'SSL23_GET_SERVER_HELLO', 'sslv3 alert handshake failure')],)",),))

原因分析:
在使用html=requests.get(url)这句
http连接太多没有关闭导致的

解决办法:

s = requests.session()
s.keep_alive = False # 关闭多余连接
s.get(url) # 你需要的网址

你可能感兴趣的:(数据科学--python)