利用urllib模块可以打开任意个url。
1.
urlopen() 打开一个url返回一个文件对象,可以进行类似文件对象的操作。
In [308]: import urllib
In [309]: file=urllib.urlopen('
In [310]: file.readline()
Out[310]: '<!DOCTYPE html><!--STATUS OK--><html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><link href="https://www.linuxidc.com/s1.bdstatic.com"/><link href="https://www.linuxidc.com/t1.baidu.com"/><link href="https://www.linuxidc.com/t2.baidu.com"/><link href="https://www.linuxidc.com/t3.baidu.com"/><link href="https://www.linuxidc.com/t10.baidu.com"/><link href="https://www.linuxidc.com/t11.baidu.com"/><link href="https://www.linuxidc.com/t12.baidu.com"/><link href="https://www.linuxidc.com/b1.bdstatic.com"/><title>\xe7\x99\xbe\xe5\xba\xa6\xe4\xb8
可以用read(),readlines(),fileno(),close()这些函数
In [337]: file.info()
Out[337]: <httplib.HTTPMessage instance at 0x2394a70>
In [338]: file.getcode()
Out[338]: 200
In [339]: file.geturl()
Out[339]: 'http://www.baidu.com/'
2.urlretrieve() 将url对应的html页面保存为文件
In [404]: filename=urllib.urlretrieve('http://www.baidu.com/',filename='/tmp/baidu.html')
In [405]: type (filename)
Out[405]: <type 'tuple'>
In [406]: filename[0]
Out[406]: '/tmp/baidu.html'
In [407]: filename
Out[407]: ('/tmp/baidu.html', <httplib.HTTPMessage instance at 0x23ba878>)
In [408]: filename[1]
Out[408]: <httplib.HTTPMessage instance at 0x23ba878>
3.urlcleanup() 清除由urlretrieve()产生的缓存
In [454]: filename=urllib.urlretrieve('http://www.baidu.com/',filename='/tmp/baidu.html')
In [455]: urllib.urlcleanup()
4.urllib.quote()和urllib.quote_plus() 将url进行编码
In [483]: urllib.quote('http://www.baidu.com')
Out[483]: 'http%3A//www.baidu.com'
In [484]: urllib.quote_plus('http://www.baidu.com')
Out[484]: 'http%3A%2F%2F'
5.urllib.unquote()和urllib.unquote_plus() 将编码后的url解码
In [514]: urllib.unquote('http%3A//www.baidu.com')
Out[514]: 'http://www.baidu.com'
In [515]: urllib.unquote_plus('http%3A%2F%2F')
Out[515]: 'http://www.baidu.com'
6.urllib.urlencode() 将url中的键值对以&划分,可以结合urlopen()实现POST方法和GET方法
In [560]: import urllib
In [561]: params=urllib.urlencode({'spam':1,'eggs':2,'bacon':0})
In [562]: f=urllib.urlopen("http://Python.org/query?%s" %params)
In [563]: f.readline()
Out[563]: '<!doctype html>\n'
In [564]: f.readlines()
Out[564]:
['<!--[if lt IE 7]> <html> <![endif]-->\n',
'<!--[if IE 7]> <html> <![endif]-->\n',
'<!--[if IE 8]> <html> <![endif]-->\n',
'<!--[if gt IE 8]><!--><html lang="en" dir="ltr"> <!--<![endif]-->\n',
'\n',
二 urllib2模块
urllib2比urllib多了些功能,例如提供基本的认证,重定向,cookie等功能
https://docs.python.org/2/library/urllib2.html
https://docs.python.org/2/howto/urllib2.html
In [566]: import urllib2
In [567]: f=urllib2.urlopen('http://www.python.org/')
In [568]: print f.read(100)
--------> print(f.read(100))
<!doctype html>
<!--[if lt IE 7]> <html> <![endif]-->
打开python的官网并返回头100个字节内容
HTTP基于请求和响应,客户端发送请求,服务器响应请求。urllib2使用一个Request对象代表发送的请求,调用urlopen()打开Request对象可以返回一个response对象。reponse对象是一个类似文件的对象,可以像文件一样进行操作
In [630]: import urllib2
In [631]: req=urllib2.Request('http://www.baidu.com')
In [632]: response=urllib2.urlopen(req)
In [633]: the_page=response.read()
In [634]: the_page
Out[634]: '<!DOCTYPE html><!--STATUS OK--><html><head><meta http-equiv="content-type" content="text/html;charset=utf-8"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><link href="https://www.linuxidc.com/s1.bdstatic.com"/><link href="https://www.linuxidc.com/t1.baidu.com"/><link href="https://www.linuxidc.com/t2.baidu.com"/><link href="//t3.baidu.
通常情况下需要向一个url以POST的方式发送数据。
In [763]: import urllib
In [764]: import urllib2
In [765]: url='http://xxxxxx/login.php'
In [766]: values={'ver' : '1.7.1', 'email' : 'xxxxx', 'password' : 'xxxx', 'mac' : '111111111111'}
In [767]: data=urllib.urlencode(values)
In [768]: req=urllib2.Request(url,data)
In [769]: response=urllib2.urlopen(req)
In [770]: the_page=response.read()
In [771]: the_page