网络爬虫与pptp服务的关系,很多人都是知道的,不过虽然知道我们在使用爬虫进行抓取网页时要使用pptp服务,但这如何使用的方法其实很多人都不知道的。不同爬虫设置代理的方法可能是不一样的,不通用,这样大家就需要多学习几个使用pptp服务的方法,下面小编介绍Python调用pptp服务的几个方法:
1.Selenium调用代理
from selenium import webdriver
proxy='123.58.10.36:8080'
chrome_options=webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=http://'+proxy)
browser=webdriver.Chrome(chrome_options=chrome_options)
browser.get('http://httpbin.org/get')
2.requests调用代理
import requests
proxy='123.58.10.36:8080'#本地代理
#proxy='username:password 123.58.10.36:8080'
proxies={
'http':'http: