本文共 4519 字,大约阅读时间需要 15 分钟。
首先说明一下我的爬虫环境是基于py2.x
的, 为什么用这个版本呢,因为py2.x
的版本支持的多,而且一般会使用py2.x
环境,基本在py3.x
也没有太大问题,好了,进入正题!
urllib
与urllib
2是Python
内置的,要实现Http
请求,以urllib2
为主,urllib
为辅.
构建一个请求与响应模型
import urllib2strUrl = "http://www.baidu.com"response = urllib2.urlopen(strUrl)print response.read()
得到:
这样就获取了整个网页内容.
说明urlopen(strUrl,data,timeout)
Get与Post传送数据
post与get传送数据是两个比较常用的数据传送方式,一般只需要掌握这两种方式就可以了.Get方式传送数据
import urllib2import urllibvalues = {}values['username'] = '136xxxx0839'values['password'] = '123xxx'data = urllib.urlencode(values)#这里注意转换格式url = 'https://accounts.douban.com/login?alias=&redir=https%3A%2F%2Fwww.douban.com%2F&source=index_nav&error=1001'getUrl = url+'?'+datarequest = urllib2.Request(getUrl)response = urllib2.urlopen(request)# print response.read()print getUrl得到:https://accounts.douban.com/login?alias=&redir=https%3A%2F%2Fwww.douban.com%2F&source=index_nav&error=1001?username=136xxxx0839&password=123xxx
post数据传送方式
values = {}values['username'] = '136xxxx0839'values['password'] = '123xxx'data = urllib.urlencode(values)url = 'https://accounts.douban.com/login?alias=&redir=https%3A%2F%2Fwww.douban.com%2F&source=index_nav&error=1001'request = urllib2.Request(url,data)response = urllib2.urlopen(request)print response.read()
两种请求方式差异点:
post
与request
方式的数据传输时注意urllib2.Request(url,data)
这里面的数据传输 注意处理请求的headers
很多时候我们服务器会检验请求是否来自于浏览器,所以我们需要在请求的头部伪装成浏览器来请求服务器.一般做请求的时候,最好都要伪装成浏览器,防止出现拒绝访问等错误,这也是一种反爬虫的一种策略user_agent = {'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4295.400 QQBrowser/9.7.12661.400'}header = {'User-Agent':user_agent}url = 'http://www.qq.com/'request = urllib2.Request(url,headers=header)response = urllib2.urlopen(request)print response.read().decode('gbk')#这里注意一下需要对读取的网页内容进行转码,先要查看一下网页的chatset是什么格式.
在浏览器上打开www.qq.com
然后按F12,查看User-Agent
:
User-Agent : 有些服务器或 Proxy 会通过该值来判断是否是浏览器发出的请求
Content-Type : 在使用 REST 接口时,服务器会检查该值,用来确定 HTTP Body 中的内容该怎样解析。application/xml : 在 XML RPC,如 RESTful/SOAP 调用时使用application/json : 在 JSON RPC 调用时使用application/x-www-form-urlencoded : 浏览器提交 Web 表单时使用在使用服务器提供的 RESTful 或 SOAP 服务时, Content-Type 设置错误会导致服务器拒绝服务
requests
是Python最为常用的http
请求库,也是极其简单的.使用的时候,首先需要对requests
进行安装,直接使用Pycharm进行一键安装。
import requestsurl = 'http://www.baidu.com'r = requests.get(url)print type(r)print r.status_codeprint r.encoding#print r.contentprint r.cookies得到:200ISO-8859-1 ]>
values = {'user':'aaa','id':'123'}url = 'http://www.baidu.com'r = requests.get(url,values)print r.url得到:http://www.baidu.com/?user=aaa&id=123
values = {'user':'aaa','id':'123'}url = 'http://www.baidu.com'r = requests.post(url,values)print r.url#print r.text得到:http://www.baidu.com/
user_agent = {'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4295.400 QQBrowser/9.7.12661.400'}header = {'User-Agent':user_agent}url = 'http://www.baidu.com/'r = requests.get(url,headers=header)print r.content
url = 'http://www.baidu.com'r = requests.get(url)if r.status_code == requests.codes.ok: print r.status_code print r.headers print r.headers.get('content-type')#推荐用这种get方式获取头部字段else: r.raise_for_status()得到:200{'Content-Encoding': 'gzip', 'Transfer-Encoding': 'chunked', 'Set-Cookie': 'BDORZ=27315; max-age=86400; domain=.baidu.com; path=/', 'Server': 'bfe/1.0.8.18', 'Last-Modified': 'Mon, 23 Jan 2017 13:27:57 GMT', 'Connection': 'Keep-Alive', 'Pragma': 'no-cache', 'Cache-Control': 'private, no-cache, no-store, proxy-revalidate, no-transform', 'Date': 'Wed, 17 Jan 2018 07:21:21 GMT', 'Content-Type': 'text/html'}text/html
url = 'https://www.zhihu.com/'r = requests.get(url)print r.cookiesprint r.cookies.keys()得到:]>['aliyungf_tc']
处理重定向只是需要设置一下allow_redirects
字段即可,将allow_redirectsy
设置为True
则是允许重定向的,设置为False
则禁止重定向的
r = requests.get(url,allow_redirects = True)print r.urlprint r.status_codeprint r.history得到:http://www.baidu.com/200[]
超时选项是通过参数timeout
来设置的
url = 'http://www.baidu.com'r = requests.get(url,timeout = 2)
proxis = { 'http':'http://www.baidu.com', 'http':'http://www.qq.com', 'http':'http://www.sohu.com',}url = 'http://www.baidu.com'r = requests.get(url,proxies = proxis)
转载于:https://blog.51cto.com/7200087/2070304