1.基本方法
urllib.request.urlopen(url, data=None, [timeout, ]*, cafile=None, capath=None, cadefault=False, context=None)
url: 需要打開的網(wǎng)址
data:Post提交的數(shù)據(jù)
timeout:設(shè)置網(wǎng)站的訪問超時(shí)時(shí)間
直接用urllib.request模塊的urlopen()獲取頁面,page的數(shù)據(jù)格式為bytes類型檐什,需要decode()解碼,轉(zhuǎn)換成str類型弱卡。
from urllib import request
response = request.urlopen(r'http://python.org/') # <http.client.HTTPResponse object at 0x00000000048BC908> #HTTPResponse類型
page = response.read()
page = page.decode('utf-8')
urlopen返回對(duì)象提供方法:
read() , readline() ,readlines() , fileno() , close() :對(duì)HTTPResponse類型數(shù)據(jù)進(jìn)行操作
info():返回HTTPMessage對(duì)象乃正,表示遠(yuǎn)程服務(wù)器返回的頭信息
getcode():返回Http狀態(tài)碼。如果是http請(qǐng)求婶博,200請(qǐng)求成功完成;404網(wǎng)址未找到
geturl():返回請(qǐng)求的url
2.使用Request
urllib.request.Request(url, data=None, headers={}, method=None)
使用request()來包裝請(qǐng)求瓮具,再通過urlopen()獲取頁面。
url = r'http://www.lagou.com/zhaopin/Python/?labelWords=label'
headers = {
'User-Agent': r'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) 'r'Chrome/45.0.2454.85 Safari/537.36 115Browser/6.0.3',
'Referer': r'http://www.lagou.com/zhaopin/Python/?labelWords=label',
'Connection': 'keep-alive'
}
req = request.Request(url, headers=headers)
page = request.urlopen(req).read()
用來包裝頭部的數(shù)據(jù):
User-Agent :這個(gè)頭部可以攜帶如下幾條信息:瀏覽器名和版本號(hào)凡人、操作系統(tǒng)名和版本號(hào)名党、默認(rèn)語言
Referer:可以用來防止盜鏈,有一些網(wǎng)站圖片顯示來源http://***.com挠轴,就是檢查Referer來鑒定的
Connection:表示連接狀態(tài)传睹,記錄Session的狀態(tài)。
3.Post數(shù)據(jù)
urllib.request.urlopen(url, data=None, [timeout, ]***, cafile=None, capath=None, cadefault=False, context=None)
urlopen()的data參數(shù)默認(rèn)為None岸晦,當(dāng)data參數(shù)不為空的時(shí)候欧啤,urlopen()提交方式為Post。
from urllib import request, parse
url = r'http://www.lagou.com/jobs/positionAjax.json?'
headers = {
'User-Agent': r'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) 'r'Chrome/45.0.2454.85 Safari/537.36 115Browser/6.0.3',
'Referer': r'http://www.lagou.com/zhaopin/Python/?labelWords=label',
'Connection': 'keep-alive'
}
data = {
'first': 'true',
'pn': 1,
'kd': 'Python'
}
data = parse.urlencode(data).encode('utf-8')
req = request.Request(url, headers=headers, data=data)
page = request.urlopen(req).read()
page = page.decode('utf-8')
urllib.parse.urlencode(query, doseq=False, safe='', encoding=None, errors=None)
urlencode()主要作用就是將url附上要提交的數(shù)據(jù)启上。
data = {
'first': 'true',
'pn': 1,
'kd': 'Python'
}
data = parse.urlencode(data).encode('utf-8')
經(jīng)過urlencode()轉(zhuǎn)換后的data數(shù)據(jù)為?first=true?pn=1?kd=Python邢隧,最后提交的url為
http://www.lagou.com/jobs/positionAjax.json?first=true?pn=1?kd=Python
Post的數(shù)據(jù)必須是bytes或者iterable of bytes,不能是str冈在,因此需要進(jìn)行encode()編碼
page = request.urlopen(req, data=data).read()
當(dāng)然倒慧,也可以把data的數(shù)據(jù)封裝在urlopen()參數(shù)中
4、使用代理
urllib.request.ProxyHandler(proxies=None)
當(dāng)需要抓取的網(wǎng)站設(shè)置了訪問限制包券,這時(shí)就需要用到代理來抓取數(shù)據(jù)纫谅。
data = {
'first': 'true',
'pn': 1,
'kd': 'Python'
}
proxy = request.ProxyHandler({'http': '5.22.195.215:80'}) # 設(shè)置proxy
opener = request.build_opener(proxy) # 掛載opener
request.install_opener(opener) # 安裝opener
data = parse.urlencode(data).encode('utf-8')
page = opener.open(url, data).read()
page = page.decode('utf-8')
return page