百木园-与人分享,
就是让自己快乐。

Python requests设置代理

首先设置代理地址:

proxies = {
    \"http\": \"http://10.10.1.10:3128\",
    \"https\": \"http://127.0.0.1:8888\",
}

对请求参数进行设置:

login = requests.get(login_url, headers=headers, proxies=proxies, verify=r\"./FiddlerRoot.pem\")

在此次代理中使用的是Fiddler进行抓包,链接为https,需要将Fiddler生成的证书修改为.pem格式


来源:https://www.cnblogs.com/emmmmcccc/p/15971359.html
本站部分图文来源于网络,如有侵权请联系删除。

未经允许不得转载:百木园 » Python requests设置代理

相关推荐

  • 暂无文章