urllib.request 模块-urlopen方法

urllib.request 模块

urllib.request模块定义了以下函数:

urllib.request.urlopen(url,data=None, [timeout, ]*,cafile=None,capath=None,cadefault=False,context=None)

参数

打开url链接,可以是字符串或者是Request对象。

data必须是一个定义了向服务器所发送额外数据的对象,或者如果没有必要数据的话,就是None值。可以查阅Request获取详细信息。

url.request模块在HTTP请求中使用了HTTP/1.1,并且包含了Connection:close头部。

可选的timeout参数指定阻止诸如连接尝试等操作的超时时间(以秒为单位)(如果未指定,将使用全局默认超时设置)。这实际上只适用于HTTP,HTTPS和FTP连接。

如果指定了context,则它必须是描述各种SSL选项的ssl.SSLContext实例。 有关更多详细信息,请参阅HTTPSConnection。

可选的cafilecapath参数为HTTPS请求指定一组可信的CA证书。cafile应指向包含一系列CA证书的单个文件,而capath应指向散列证书文件的目录。 更多信息可以在ssl.SSLContext.load_verify_locations()中找到。

cadefault参数被忽略。

返回值:

该函数总是返回一个可以作为context manager使用的对象,并且具有方法,例如;

geturl()-返回检索的资源的URL,通常用于确定是否遵循重定向;

info()-以email.message_from_string()实例的形式返回页面的元信息(如headers)(可快速参考HTTP Headers);

getcode()-返回响应的HTTP状态码。

对于HTTP和HTTPS URL,此函数返回稍微修改的http.client.HTTPResponse对象。 除上述三种新方法之外,msg属性还包含与reason属性(服务器返回的原因短语)相同的信息,而不是HTTPResponse文档中指定的响应标头。

对于由传统URLopener和FancyURLopener类明确处理的FTP,文件和数据URL和请求,此函数返回一个urllib.response.addinfourl对象。

在协议错误上引发URLError。

请注意,如果没有处理请求的handler,则可能返回None(尽管默认安装的全局OpenerDirector使用UnknownHandler来确保永不发生这种情况)。

另外,如果检测到代理设置(例如,如果设置了诸如http_proxy的* _proxy环境变量),则默认安装ProxyHandler,并确保通过代理处理请求。

import urllib.request

response=urllib.request.urlopen('https://www.python.org')

#请求站点获得一个HTTPResponse对象

#print(response.read().decode('utf-8')) #返回网页内容

#print(response.getheader('server')) #返回响应头中的server值

#print(response.getheaders()) #以列表元祖对的形式返回响应头信息

#print(response.fileno()) #返回文件描述符

#print(response.version) #返回版本信息

#print(response.status) #返回状态码200,404代表网页未找到

#print(response.debuglevel) #返回调试等级

#print(response.closed) #返回对象是否关闭布尔值

#print(response.geturl()) #返回检索的URL

#print(response.info()) #返回网页的头信息

#print(response.getcode()) #返回响应的HTTP状态码

#print(response.msg) #访问成功则返回ok

#print(response.reason) #返回状态信息

# 按行读取

# print(response.readline())# 读取一行

# print(response.readline()) # 读取下一行

# print( response.readlines()) # 读取多行。得到一个列表 每个元素是一行

使用案例

1、简单读取网页信息

import urllib.request

response =urllib.request.urlopen('http://python.org/')

html =response.read()

2、使用request

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

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

import urllib.request

req =urllib.request.Request('http://python.org/')

response =urllib.request.urlopen(req)

the_page =response.read()

3、发送数据,以登录知乎为例

import gzip

import re

import urllib.request

import urllib.parse

import http.cookiejar

defung zip(data):

  try:

    print("尝试解压缩...")

    data =gzip.decompress(data)

    print("解压完毕")

  except:

    print("未经压缩,无需解压")

  returndata


def getXSRF(data):

  cer =re.compile('name=\"_xsrf\" value=\"(.*)\"',flags =0)

  strlist =cer.findall(data)

  return strlist[0]


def getOpener(head):

  # cookies 处理

  cj =http.cookiejar.CookieJar()

  pro =urllib.request.HTTPCookieProcessor(cj)

  opener =urllib.request.build_opener(pro)

  header =[]

  forkey,value inhead.items():

    elem =(key,value)

    header.append(elem)

  opener.addheaders =header

  returnopener

# header信息可以通过firebug获得

header ={

  'Connection': 'Keep-Alive',

  'Accept': 'text/html, application/xhtml+xml, */*',

  'Accept-Language': 'en-US,en;q=0.8,zh-Hans-CN;q=0.5,zh-Hans;q=0.3',

  'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:46.0) Gecko/20100101 Firefox/46.0',

  'Accept-Encoding': 'gzip, deflate',

  'Host': 'www.zhihu.com',

  'DNT': '1'

}


url ='http://www.zhihu.com/'

opener =getOpener(header)

op =opener.open(url)

data =op.read()

data =ungzip(data)

_xsrf =getXSRF(data.decode())


url +="login/email"

email ="登录账号"

password ="登录密码"

postDict ={

  '_xsrf': _xsrf,

  'email': email,

  'password': password,

  'rememberme': 'y'

}

postData =urllib.parse.urlencode(postDict).encode()

op =opener.open(url,postData)

data =op.read()

data =ungzip(data)


print(data.decode())

4、http错误

import urllib.request

req =urllib.request.Request('http://www.lz881228.blog.163.com')

try:

  urllib.request.urlopen(req)

except urllib.error.HTTPError as e:

print(e.code)

print(e.read().decode("utf8"))

5、异常处理

from urllib.request importRequest, urlopen

from urllib.error importURLError, HTTPError


req =Request("http://www.abc.com/")

try:

  response =urlopen(req)

except HTTPError as e:

  print('The server couldn't fulfill the request.')

  print('Error code: ', e.code)

except URLError as e:

  print('We failed to reach a server.')

  print('Reason: ', e.reason)

else:

  print("good!")

  print(response.read().decode("utf8"))

6、http认证

import urllib.request 

# create a password manager

password_mgr =urllib.request.HTTPPasswordMgrWithDefaultRealm()


# Add the username and password.

# If we knew the realm, we could use it instead of None.

top_level_url ="https://www.jb51.net/"

password_mgr.add_password(None, top_level_url, 'rekfan', 'xxxxxx')


handler =urllib.request.HTTPBasicAuthHandler(password_mgr)


# create "opener" (OpenerDirector instance)

opener =urllib.request.build_opener(handler)


# use the opener to fetch a URL

a_url ="https://www.jb51.net/"

x =opener.open(a_url)

print(x.read())


# Install the opener.

# Now all calls to urllib.request.urlopen use our opener.

urllib.request.install_opener(opener)

a =urllib.request.urlopen(a_url).read().decode('utf8')


print(a)

7、使用代理

import urllib.request

proxy_support =urllib.request.ProxyHandler({'sock5': 'localhost:1080'})

opener =urllib.request.build_opener(proxy_support)

urllib.request.install_opener(opener)

a =urllib.request.urlopen("http://www.baidu.com").read().decode("utf8")

print(a)

8、超时

import socket

import urllib.request


# timeout in seconds

timeout = 2

socket.setdefaulttimeout(timeout)


# this call to urllib.request.urlopen now uses the default timeout

# we have set in the socket module

req = urllib.request.Request('//www.jb51.net /')

a = urllib.request.urlopen(req).read()

print(a)

import urllib.request

response = urllib.request.urlopen("https://httpbin.org/get",timeout=1)

print(response.read().decode("utf-8"))

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容

  • 什么是Urllib Urllib是python内置的HTTP请求库 包括以下模块 urllib.request 请...
    msnchen阅读 265评论 0 0
  • 什么是Urllib: Urllib是python内置的HTTP请求库 包括以下模块 urllib.request ...
    啊烟雨阅读 1,294评论 0 5
  • 管方文档地址: 翻译的是Python 3.5.2版本,对应的urllib https://docs.python....
    kohlgrx阅读 573评论 0 0
  • Urllib库是python内置的库 什么是Urllib 1.urllib.request 请求模块2.ur...
    谢谢_d802阅读 692评论 0 3
  • 爬虫的基本流程 一、发送HTTP请求(Request)通过Python库向目标站点发送HTTP请求,等待服务器响应...
    晓枫_0544阅读 758评论 0 0