真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

常見(jiàn)Python爬蟲(chóng)使用代理IP的方法是什么

這篇文章主要介紹“常見(jiàn)Python爬蟲(chóng)使用代理IP的方法是什么”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“常見(jiàn)Python爬蟲(chóng)使用代理IP的方法是什么”文章能幫助大家解決問(wèn)題。

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信平臺(tái)小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了梧州免費(fèi)建站歡迎大家使用!

一、urllib代理設(shè)置

from urllib.error import URLError

from urllib.request import ProxyHandler,build_opener

proxy='123.58.10.36:8080' #使用本地代理

#proxy='username:password@123.58.10.36:8080' #購(gòu)買代理

proxy_handler=ProxyHandler({

'http':'http://'+proxy,

'https':'https://'+proxy

})

opener=build_opener(proxy_handler)

try:

response=opener.open('http://httpbin.org/get') #測(cè)試ip的網(wǎng)址

print(response.read().decode('utf-8'))

except URLError as e:

print(e.reason)

二、requests代理設(shè)置

import requests

proxy='123.58.10.36:8080' #本地代理

#proxy='username:password@123.58.10.36:8080'

proxies={

'http':'http://'+proxy,

'https':'https://'+proxy

}

try:

response=requests.get('http://httpbin.org/get',proxies=proxies)

print(response.text)

except requests.exceptions.ConnectionError as e:

print('錯(cuò)誤:',e.args)

三、Selenium代理設(shè)置

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')

關(guān)于“常見(jiàn)Python爬蟲(chóng)使用代理IP的方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。


網(wǎng)頁(yè)標(biāo)題:常見(jiàn)Python爬蟲(chóng)使用代理IP的方法是什么
文章出自:http://weahome.cn/article/jdpgci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部