可以把urllib2当作urllib的扩增,比较明显的优势是urllib2.urlopen可以接受Request对象作为参数,从而可以控制HTTP Request的headers,进而实现模拟浏览器、模拟登录等操作。
做HTTP Request时应当尽量使用urllib2库,但是urllib.urlretrieve函数以及urllib.quote等一系列quote和unquote功能没有被加入urllib2中,因此有时也需要urllib的辅助。
此外常用的函数:
urllib:
#编码函数
urlencode()
#远程数据取回
urlretrieve()
urllib2:
urlopen()
Request()
原文地址:http://blog.csdn.net/songyu0120/article/details/45219241