转自:http://www.weidianyuedu.com/content/0013617062600.html
八、关于代理
我们也可以在程序中指定代理来进行http或https访问(使用proxies关键字参数),如下:
proxies = {
“http”: “http://10.10.1.10:3128”,
“https”: “http://10.10.1.10:1080”,
}
requests.get(“http://pythontab.com”, proxies=proxies)