zoukankan      html  css  js  c++  java
  • (转)urllib库python2和python3具体区别

    转载链接:https://blog.csdn.net/whatday/article/details/54710403

    Python 2 name Python 3 name
    urllib.urlretrieve() urllib.request.urlretrieve()
    urllib.urlcleanup() urllib.request.urlcleanup()
    urllib.quote() urllib.parse.quote() 
    urllib.quote_plus() urllib.parse.quote_plus()
    urllib.unquote() urllib.parse.unquote()
    urllib.unquote_plus() urllib.parse.unquote_plus()
    urllib.urlencode() urllib.parse.urlencode()
    urllib.pathname2url() urllib.request.pathname2url()
    urllib.url2pathname() urllib.request.url2pathname()
    urllib.getproxies() urllib.request.getproxies()
    urllib.URLopener urllib.request.URLopener 
    urllib.FancyURLopener urllib.request.FancyURLopener
    urllib.ContentTooShortError urllib.error.ContentTooShortError
    urllib2.urlopen() urllib.request.urlopen()
    urllib2.install_opener() urllib.request.install_opener()
    urllib2.build_opener() urllib.request.build_opener()
    urllib2.URLError urllib.error.URLError
    urllib2.HTTPError urllib.error.HTTPError
    urllib2.Request urllib.request.Request
    urllib2.OpenerDirector urllib.request.OpenerDirector
    urllib2.BaseHandler urllib.request.BaseHandler
    urllib2.HTTPDefaultErrorHandler urllib.request.HTTPDefaultErrorHandler
    urllib2.HTTPRedirectHandler urllib.request.HTTPRedirectHandler
    urllib2.HTTPCookieProcessor urllib.request.HTTPCookieProcessor
    urllib2.ProxyHandler urllib.request.ProxyHandler
    urllib2.HTTPPasswordMgr urllib.request.HTTPPasswordMgr
    urllib2.HTTPPasswordMgrWithDefaultRealm urllib.request.HTTPPasswordMgrWithDefaultRealm
    urllib2.AbstractBasicAuthHandler urllib.request.AbstractBasicAuthHandler
    urllib2.HTTPBasicAuthHandler urllib.request.HTTPBasicAuthHandler
    urllib2.ProxyBasicAuthHandler urllib.request.ProxyBasicAuthHandler
    urllib2.AbstractDigestAuthHandler urllib.request.AbstractDigestAuthHandler
    urllib2.HTTPDigestAuthHandler urllib.request.HTTPDigestAuthHandler
    urllib2.ProxyDigestAuthHandler urllib.request.ProxyDigestAuthHandler
    urllib2.HTTPHandler urllib.request.HTTPHandler
    urllib2.HTTPSHandler urllib.request.HTTPSHandler
    urllib2.FileHandler urllib.request.FileHandler
    urllib2.FTPHandler urllib.request.FTPHandler
    urllib2.CacheFTPHandler urllib.request.CacheFTPHandler 
    urllib2.UnknownHandler urllib.request.UnknownHandler
  • 相关阅读:
    http协议相关知识
    linux 常用命令总结
    PHP traits
    php 正则案例
    php 中关于正则 元字符
    【U3D】 第三人称控制器ThirdPersonCharacter添加之后角色原地打转不移动的问题(unity5.3.5f)
    .Net Core异步async/await探索
    IdentityServer4实现单点登录统一认证
    CSAPP-Tiny Web服务器【2】源码解析
    CSAPP-Tiny Web服务器【1】编译搭建
  • 原文地址:https://www.cnblogs.com/tanrong/p/10492079.html
Copyright © 2011-2022 走看看