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
  • 相关阅读:
    Tensorflow安装环境更新
    IE请求访问的设置
    eclipse安装JAVA反编译插件
    eclipse导入JDK源码
    org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'PUT' not supported
    Linux学习笔记——使用指定的用户权限执行程序——sudo
    Linux学习笔记——查看Linux系统信息的方法
    Linux学习笔记——切换并取代用户身份命令——su
    JS实现电子时钟
    鼻炎
  • 原文地址:https://www.cnblogs.com/tanrong/p/10492079.html
Copyright © 2011-2022 走看看