Python 代理服務(wù)器
Python 代理服務(wù)器
代理服務(wù)器用于通過另一臺服務(wù)器瀏覽到某些網(wǎng)站,以便瀏覽保持匿名。它也可以用來繞過特定IP地址的阻止。
我們通過傳遞代理服務(wù)器地址作為參數(shù),使用urllib模塊中的urlopen方法訪問網(wǎng)站。
示例在下面的示例中,使用代理地址訪問網(wǎng)站twitter.com進(jìn)行匿名訪問。OK的響應(yīng)狀態(tài)證明已成功通過代理服務(wù)器訪問。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 import urllib URL = 'http://www.xntutor.com' PROXY_ADDRESS = "202.54.11.6:8088" if __name__ == '__main__': resp = urllib.urlopen(URL, proxies = {"http" : PROXY_ADDRESS}) print "Proxy server returns response headers: %s " %resp.headers
當(dāng)運(yùn)行上面的程序時,得到類似以下輸出:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 Proxy server returns response headers: cache-control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0 content-length: 185960 content-type: text/html;charset=utf-8 date: Mon, 02 Jul 2019 02:06:19 GMT expires: Tue, 31 Mar 1981 05:00:00 GMT last-modified: Mon, 02 Jul 2019 02:06:19 GMT pragma: no-cache server: tsa_n set-cookie: fm=0; Expires=Mon, 02 Jul 2019 02:06:10 GMT; Path=/; Domain=.twitter.com; Secure; HTTPOnly set-cookie: ................ x-xss-protection: 1; mode=block; report=http://xntutor.com/i/xss_report
相關(guān)文章
- 使用Python?Beautiful?Soup解析HTML內(nèi)容的方法
- 在Python里面調(diào)用Golang代碼的方法
- Python異步之怎么保護(hù)任務(wù)免于取消
- Python反射機(jī)制怎么應(yīng)用
- 如何使用Python點(diǎn)云生成3D網(wǎng)格
- python如何實(shí)現(xiàn)簡易的學(xué)生信息管理系統(tǒng)
- Python迭代器如何創(chuàng)建使用
- Python中Matplotlib圖像如何添加標(biāo)簽
- Python如何利用手勢識別實(shí)現(xiàn)貪吃蛇游戲
- Python網(wǎng)絡(luò)爬蟲之如何獲取網(wǎng)絡(luò)數(shù)據(jù)
- python操作Excel神器openpyxl如何使用
- Python HTTP請求
- Python 自定義HTTP請求
- Python 請求狀態(tài)代碼
- Python 連接重用
- Python Web表單提交
- Python 數(shù)據(jù)庫和SQL
- Python 電子郵件
- Python SMTP
- Python列出目錄