Urllib是Python提供的一個用於操做URL的模塊,在Python2.X中,有Urllib庫,也有Urllib2庫,在Python3.X中Urllib2合併到了Urllib中,咱們爬取網頁的時候,常常須要用到這個庫。下面總結了Urllib相關模塊中從Python2.X到Python3.X的常見的一些變更。
在Python2.X中使用import urllib2——對應的,在Python3.X中會使用import urllib.request,urllib.error。python
在Python2.X中使用import urllib——對應的,在Python3.X中會使用import urllib.request,urllib.error,urllib.parse。cookie
在Python2.X中使用import urlparse——對應的,在Python3.X中會使用import urllib.parse。url
在Python2.X中使用import urllib2——對應的,在Python3.X中會使用import urllib.request,urllib.error。code
在Python2.X中使用urllib2.urlopen——對應的,在Python3.X中會使用urllib.request.urlopen。blog
在Python2.X中使用urllib.urlencode——對應的,在Python3.X中會使用urllib.parse.urlencode。class
在Python2.X中使用urllib.quote——對應的,在Python3.X中會使用urllib.request.quote。import
在Python2.X中使用cookielib.CookieJar——對應的,在Python3.X中會使用http.CookieJar。request
在Python2.X中使用urllib2.Request——對應的,在Python3.X中會使用urllib.request.Request
im