其他分享
首页 > 其他分享> > 爬虫中间代理

爬虫中间代理

作者:互联网

#使用第三方机器发送请求
import  requests
#找中间代理的网站
#218.60.8.83:3129
proxies1={
    "http":"https://218.60.8.83:3129"
    #"https":""不同协议可以加赠不同代理

}
resp=requests.get('https://www.baidu.com/',proxies=proxies1)
resp.encoding='utf-8'
print(resp.text)

 

标签:proxies1,3129,218.60,8.83,resp,爬虫,代理,中间,https
来源: https://www.cnblogs.com/520520520zl/p/16210746.html