FakeUserAgentError('Maximum amount of retries reached') 彻底解决办法

# 禁用服务器缓存
ua = UserAgent(use_cache_server=False)

# 无效,不缓存数据:
ua = UserAgent(cache=False)

# 无效,忽略ssl验证:
ua = UserAgent(verify_ssl=False)

当上面这些方式都无效的时候,就需要使用本地保存获取了

# 下载: 
    https://fake-useragent.herokuapp.com/browsers/0.1.11 

# 并另存为:
    fake_useragent.json

# 获取user_agent函数
def get_header():
    location = os.getcwd() + '/fake_useragent.json'
    ua = fake_useragent.UserAgent(path=location)
    return ua.random
原文地址:https://www.cnblogs.com/tulintao/p/11522446.html