爬虫(五)urllib

1 urllib介绍

除了requests模块可以发送请求之外, urllib模块也可以实现请求的发送,只是操作方法略有不同!

urllib在python中分为urllib和urllib2,在python3中为urllib。

下面以python3的urllib为例进行讲解。

 

2 urllib的基本方法介绍

2.1 urllib.urlopoen

  1. 传入URL地址

     response = urllib.urlopen("http://www.baidu.com")
    
  2. 传入request对象

2.2 urllib.Request

  1. 构造简单请求

     #构造请求
     request = urllib.request.Request("http://www.baidu.com")
     #发送请求获取响应
     response = urllib.request.urlopen(request)
    
  2. 传入headers参数

     #构造headers
     headers = {"User-Agent" : "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"} 
     #构造请求
     request = urllib.request.Request(url, headers = headers)
     #发送请求
     response = urllib.request.urlopen(request)
    
  3. 传入data参数 实现发送post请求

     #构造headers
     headers={"User-Agent": "Mozilla...."}
     #构造请求体
     formdata = {
         "type":"AUTO",
         "i":"i love python",
         "doctype":"json",
     }
     #构造请求
     request = urllib.request.Request(url, data = data, headers = headers)
     #构造请求
     response = urllib.request.urlopen(request)
     print(response.read())
    

2.3 response.read()

获取响应的html字符串,bytes类型

#发送请求
response = urllib.urlopen("http://www.baidu.com")
#获取响应
response.read()

3 urllib请求百度首页的完整例子

# coding=utf-8
import urllib

url = 'http://www.baidu.com'
#构造headers
headers = {"User-Agent" : "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)"}
#构造请求
request = urllib.request.Request(url, headers = headers)
#发送请求
response = urllib.request.urlopen(request)
#获取html字符串
html_str = response.read().decode()
print(html_str)

4 小结

  1. urllib.request中实现了构造请求和发送请求的方法
  2. urllib.request.Request(url,headers,data)能够构造请求
  3. urllib.request.urlopen能够接受request请求或者url地址发送请求,获取响应
  4. response.read()能够实现获取响应中的bytes字符串
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值