python爬虫遇到requests.exceptions.ConnectionError: HTTPSConnectionPool(host=...............port=443)解决方法
1.首先检查是否安装cryptography,pyOpenSSL,certifi如果未安装,pipinstallcryptographypipinstallpyOpenSSLpipinstallcertifi2.如果未解决,在网页请求中加入:verify=False如下requests.get(url,headers=headers,timeout=30,verify=False)3还未解决?可能