python3 urllib的用法

1.基本方法

urllib.request.urlopen(urldata=None, [timeout, ]*cafile=Nonecapath=Nonecadefault=Falsecontext=None)

-         url:  需要打开的网址

-         data:Post提交的数据

-         timeout:设置网站的访问超时时间

直接用urllib.request模块的urlopen()获取页面,page的数据格式为bytes类型,需要decode()解码,转换成str类型。

1 from urllib import request
2 response = request.urlopen(r‘http://python.org/‘) # <http.client.HTTPResponse object at 0x00000000048BC908> HTTPResponse类型
3 page = response.read()
4 page = page.decode(‘utf-8‘)

urlopen返回对象提供方法:

-         read() , readline() ,readlines() , fileno() , close() :对HTTPResponse类型数据进行操作

-         info():返回HTTPMessage对象,表示远程服务器返回的头信息

-         getcode():返回Http状态码。如果是http请求,200请求成功完成;404网址未找到

-         geturl():返回请求的url

2.使用Request

urllib.request.Request(url, data=None, headers={}, method=None)

使用request()来包装请求,再通过urlopen()获取页面。

 1 url = r‘http://www.lagou.com/zhaopin/Python/?labelWords=label‘
 2 headers = {
 3     ‘User-Agent‘: r‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) ‘
 4                   r‘Chrome/45.0.2454.85 Safari/537.36 115Browser/6.0.3‘,
 5     ‘Referer‘: r‘http://www.lagou.com/zhaopin/Python/?labelWords=label‘,
 6     ‘Connection‘: ‘keep-alive‘
 7 }
 8 req = request.Request(url, headers=headers)
 9 page = request.urlopen(req).read()
10 page = page.decode(‘utf-8‘)

用来包装头部的数据:

-         User-Agent :这个头部可以携带如下几条信息:浏览器名和版本号、操作系统名和版本号、默认语言

-         Referer:可以用来防止盗链,有一些网站图片显示来源http://***.com,就是检查Referer来鉴定的

-         Connection:表示连接状态,记录Session的状态。

3.Post数据

urllib.request.urlopen(urldata=None, [timeout, ]*cafile=Nonecapath=Nonecadefault=Falsecontext=None)

urlopen()的data参数默认为None,当data参数不为空的时候,urlopen()提交方式为Post。

 1 from urllib import request, parse
 2 url = r‘http://www.lagou.com/jobs/positionAjax.json?‘
 3 headers = {
 4     ‘User-Agent‘: r‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) ‘
 5                   r‘Chrome/45.0.2454.85 Safari/537.36 115Browser/6.0.3‘,
 6     ‘Referer‘: r‘http://www.lagou.com/zhaopin/Python/?labelWords=label‘,
 7     ‘Connection‘: ‘keep-alive‘
 8 }
 9 data = {
10     ‘first‘: ‘true‘,
11     ‘pn‘: 1,
12     ‘kd‘: ‘Python‘
13 }
14 data = parse.urlencode(data).encode(‘utf-8‘)
15 req = request.Request(url, headers=headers, data=data)
16 page = request.urlopen(req).read()
17 page = page.decode(‘utf-8‘)

urllib.parse.urlencode(query, doseq=False, safe=‘‘, encoding=None, errors=None)

urlencode()主要作用就是将url附上要提交的数据。

1 data = {
2     ‘first‘: ‘true‘,
3     ‘pn‘: 1,
4     ‘kd‘: ‘Python‘
5 }
6 data = parse.urlencode(data).encode(‘utf-8‘)

经过urlencode()转换后的data数据为?first=true?pn=1?kd=Python,最后提交的url为

http://www.lagou.com/jobs/positionAjax.json?first=true?pn=1?kd=Python

Post的数据必须是bytes或者iterable of bytes,不能是str,因此需要进行encode()编码

1 page = request.urlopen(req, data=data).read()

当然,也可以把data的数据封装在urlopen()参数中

4.异常处理

 1 def get_page(url):
 2     headers = {
 3         ‘User-Agent‘: r‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) ‘
 4                     r‘Chrome/45.0.2454.85 Safari/537.36 115Browser/6.0.3‘,
 5         ‘Referer‘: r‘http://www.lagou.com/zhaopin/Python/?labelWords=label‘,
 6         ‘Connection‘: ‘keep-alive‘
 7     }
 8     data = {
 9         ‘first‘: ‘true‘,
10         ‘pn‘: 1,
11         ‘kd‘: ‘Python‘
12     }
13     data = parse.urlencode(data).encode(‘utf-8‘)
14     req = request.Request(url, headers=headers)
15     try:
16         page = request.urlopen(req, data=data).read()
17         page = page.decode(‘utf-8‘)
18     except error.HTTPError as e:
19         print(e.code())
20         print(e.read().decode(‘utf-8‘))
21     return page

5、使用代理

urllib.request.ProxyHandler(proxies=None)

当需要抓取的网站设置了访问限制,这时就需要用到代理来抓取数据。

 1 data = {
 2         ‘first‘: ‘true‘,
 3         ‘pn‘: 1,
 4         ‘kd‘: ‘Python‘
 5     }
 6 proxy = request.ProxyHandler({‘http‘: ‘5.22.195.215:80‘})  # 设置proxy
 7 opener = request.build_opener(proxy)  # 挂载opener
 8 request.install_opener(opener)  # 安装opener
 9 data = parse.urlencode(data).encode(‘utf-8‘)
10 page = opener.open(url, data).read()
11 page = page.decode(‘utf-8‘)
12 return page

时间: 2024-10-19 12:58:27

python3 urllib的用法的相关文章

Urllib.request用法简单介绍(Python3.3)

Urllib.request用法简单介绍(Python3.3),有需要的朋友可以参考下. urllib是Python标准库的一部分,包含urllib.request,urllib.error,urllib.parse,urlli.robotparser四个子模块,这里主要介绍urllib.request的一些简单用法. 首先是urlopen函数,用于打开一个URL: # -*- coding:utf-8 -*- #获取并打印google首页的htmlimport urllib.requestre

爬虫小探-Python3 urllib.request获取页面数据

使用Python3 urllib.request中的Requests()和urlopen()方法获取页面源码,并用re正则进行正则匹配查找需要的数据. #forex.py#coding:utf-8 ''' urllib.request.urlopen() function in Python 3 is equivalent to urllib2.urlopen() in Python2 urllib.request.Request() function in Python 3 is equiva

python3 urllib模块

3.0版本中已经将urllib2.urlparse.和robotparser并入了urllib中,并且修改urllib模块,其中包含5个子模块,即是help()中看到的那五个名字. Python2中的urllib模块,在Python3中被修改为 20.5. urllib.request — Extensible library for opening URLs 20.6. urllib.response — Response classes used by urllib 20.7. urllib

python3 字典常见用法总结

python3 字典常见用法总结 Python字典是另一种可变容器模型,且可存储任意类型对象,如字符串.数字.元组等其他容器模型. 一.创建字典 字典由键和对应值成对组成.字典也被称作关联数组或哈希表.基本语法如下: dict = {'Alice': '2341', 'Beth': '9102', 'Cecil': '3258'} # 也可如此创建字典 dict1 = { 'abc': 456 } dict2 = { 'abc': 123, 98.6: 37 } 注意: 每个键与值用冒号隔开(:

Python3 urllib.parse 常用函数示例

Python3 urllib.parse 常用函数示例 http://blog.51cto.com/walkerqt/1766670 1.获取url参数. >>> from urllib import parse >>> url = r'https://docs.python.org/3.5/search.html?q=parse&check_keywords=yes&area=default' >>> parseResult = pa

python3.x 和 python2.x关于 urllib的用法

在python2.x版本中可以直接使用import urllib来进行操作,但是python3.x版本中使用的是import urllib.request来进行操作,下面是简单的例子: python2.x import urllib url = 'http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=12345' text = urllib.urlopen(url).read() python3.x import urllib.

python3 urllib用法

import urllib data = urllib.parse.urlencode(params).encode('utf-8') req = urllib.request.Request(url, data) req.add_header('Content-Type', "application/x-www-form-urlencoded") response = urllib.request.urlopen(req) the_page = response.read().dec

Python3 urllib抓取指定URL的内容

最近在研究Python,熟悉了一些基本语法和模块的使用:现在打算研究一下Python爬虫.学习主要是通过别人的博客和自己下载的一下文档进行的,自己也写一下博客作为记录学习自己过程吧.Python代码写起来和Java的感觉很不一样. Python爬虫主要使用的是urllib模块,Python2.x版本是urllib2,很多博客里面的示例都是使用urllib2的,因为我使用的是Python3.3.2,所以在文档里面没有urllib2这个模块,import的时候会报错,找不到该模块,应该是已经将他们整

[python3]csv 模块用法

1. 安装 csv模块内置于python3,无需安装 2. 基本用法 import csv c = open('output.csv','w', encoding='utf-8', newline='') //'w' - write; newline='' - 取消每次写入后的空行 writer = csv.writer(c) content = [[a,b,c]] //如果需要一次写入多行,可以把每一行的数据放在一个array中,e.g. info = [[a,b,c],[d,e,f]] wr