当前位置:  编程技术>python

Python库urllib与urllib2主要区别分析

    来源: 互联网  发布时间:2014-10-09

    本文导语:  作为一个Python菜鸟,之前一直懵懂于urllib和urllib2,以为2是1的升级版。今天看到老外写的一篇《Python: difference between urllib and urllib2》才明白其中的区别 You might be intrigued by the existence of two separate URL modules in Python -urllib and urllib2. ...

作为一个Python菜鸟,之前一直懵懂于urllib和urllib2,以为2是1的升级版。今天看到老外写的一篇《Python: difference between urllib and urllib2》才明白其中的区别

You might be intrigued by the existence of two separate URL modules in Python -urllib and urllib2. Even more intriguing: they are not alternatives for each other. So what is the difference between urllib and urllib2, and do we need them both?

你可能对于Python中两个独立存在的-urllib2和-urllib2感到好奇。更有趣的是:它们并不是可以相互代替的。那么这两个模块间的区别是什么,并且这两个我们都需要吗?

urllib and  urllib2are both Python modules that do URL request related stuff but offer different functionalities. Their two most significant differences are listed below:

urllib 和urllib2都是接受URL请求的相关模块,但是提供了不同的功能。两个最显著的不同如下:

•urllib2 can accept a Request object to set the headers for a URL request,urllib accepts only a URL. That means, you cannot masquerade your User Agent string etc.

urllib2可以接受一个Request类的实例来设置URL请求的headers,urllib仅可以接受URL。这意味着,你不可以伪装你的User Agent字符串等。

•urllib provides the urlencode method which is used for the generation of GET query strings, urllib2 doesn't have such a function. This is one of the reasons why urllib is often used along with urllib2.

urllib提供urlencode方法用来GET查询字符串的产生,而urllib2没有。这是为何urllib常和urllib2一起使用的原因。 

 For other differences between urllib and urllib2 refer to their documentations, the links are given in the References section.
Tip: if you are planning to do HTTP stuff only, check out httplib2, it is much better than httplib or urllib or urllib2.

提示:如果你仅做HTTP相关的,看一下httplib2,比其他几个模块好用。

相关资料

这里还有个类似的问答:urllib urllib2 what is the difference ?

stackoverflow上也有:Should I use urllib or urllib2?

Python Docs


    
 
 

您可能感兴趣的文章:

  • python中使用urllib2获取http请求状态码的代码例子
  • Python中使用urllib2防止302跳转的代码例子
  • python中使用urllib2伪造HTTP报头的2个方法
  • python使用urllib2模块获取gravatar头像实例
  • python通过urllib2爬网页上种子下载示例
  • python33 urllib2使用方法细节讲解
  • python网页请求urllib2模块简单封装代码
  • Python使用urllib2获取网络资源实例讲解
  • Python的词法分析与语法分析
  • c 调用python出现异常的原因分析
  • python缩进区别分析
  • python发送arp欺骗攻击代码分析
  • 针对 Python 的代码静态分析工具 PySonar
  • Python中replace方法实例分析
  • python实现apahce网站日志分析示例
  • 分析python服务器拒绝服务攻击代码
  • python爬虫常用的模块分析
  • python抓取京东价格分析京东商品价格走势
  • python 随机数生成的代码的详细分析
  • Python解释执行原理分析
  • python搭建简易服务器分析与实现
  • Python 文件操作技巧(File operation) 实例代码分析
  • python自动化工具日志查询分析脚本代码实现
  • 深入分析在Python模块顶层运行的代码引起的一个Bug
  • python 域名分析工具实现代码
  • Python 分析Nginx访问日志并保存到MySQL数据库实例
  • python多线程编程方式分析示例详解
  • Python3.0与2.X版本的区别实例分析
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 在Python3中使用urllib实现http的get和post提交数据操作
  • python的urllib模块显示下载进度示例
  • 用Python的urllib库提交WEB表单
  • python3使用urllib示例取googletranslate(谷歌翻译)
  • python使用urllib模块开发的多线程豆瓣小站mp3下载器
  • Python urllib模块urlopen()与urlretrieve()详解
  • python使用urllib模块和pyquery实现阿里巴巴排名查询
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • 让python同时兼容python2和python3的8个技巧分享
  • Python不使用print而直接输出二进制字符串
  • 使用setup.py安装python包和卸载python包的方法
  • Python中实现json字符串和dict类型的互转
  • 不小心把linux自带的python卸载了,导致安装一个依赖原python的软件不能安装,请问该怎么办?
  • python异常信息堆栈输出到日志文件
  • python读取csv文件示例(python操作csv)
  • python下用os.execl执行centos下的系统时间同步命令ntpdate
  • python基础教程之python消息摘要算法使用示例
  • Python namedtuple对象json序列化/反序列化及对象恢复
  • 新手该如何学python怎么学好python?
  • Python获取网页编码的方法及示例代码
  • 使用python删除nginx缓存文件示例(python文件操作)
  • Python异常模块traceback用法举例
  • python学习手册中的python多态示例代码
  • python之平台独立的调试工具winpdb介绍
  • 请教:system("C:\python2.4\python.exe C:\aa.py");该语句有何错误?为什么运行界面一闪就消失了并且没有运行完,请给出正确语句!
  • 基于Python的Html/xml解析库Beautiful Soup 4.2.1发布
  • python版本的问题
  • 测试Python内部类型及type和isinstance用法区别
  • Mac OS X10.9安装的Python2.7升级Python3.3步骤详解


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3