python3.8 request proxy(代理)失效解决方案
在使用python3.8版本的时候,我们使用request库的时候,可能会遇到
urllib3.exceptions.ProxySchemeUnknown: Not supported proxy scheme None
下面这样的错误,这是由于底层修改了url解析模式,导致proxy代理解析失败导致的。
解决方案是:
如果不使用代理,那么就可以改成
proxies = {
"http": "",
"https": "",
}
request.get(url,proxies=proxies)
如果使用代理的话,就可以修改成:
proxies = {
"http":"http://127.0.0.1:1080",
"https":"https://127.0.0.1:1080",
}
需要注意的是,一定要写成http://+ip+port这种形式,不能去掉前面的http://,否则就会产生错误。