urllib库python2和python3区别
2017-08-08 本文已影响27人
听城
urllib库python2和python3区别
- 在python2中使用的import urllib2——对应的,在python3中使用import urllib.request , import urllib.error
- 在python2中使用的import urllib——对应的,在python3中使用import urllib.request , import urllib.error,import urllib.parse
- 在python2中使用的import urlparse——对应的,在python3中使用import urllib.parse
- 在python2中使用的import urllib2.urlopen——对应的,在python3中使用import urllib.request.urlopen
- 在python2中使用的import urllib.urlencode——对应的,在python3中使用import urllib.parse.urlencode
- 在python2中使用的import urllib.quote——对应的,在python3中使用import urllib.request.quote
- 在python2中使用的import cookielib.CookieJar——对应的,在python3中使用import http.CookieJar
- 在python2中使用的import urllib2.Request——对应的,在python3中使用import urllib.request.Request