1. 程式人生 > >Python2中urllib、urllib2在Python3中urllib庫匯入對應關係

Python2中urllib、urllib2在Python3中urllib庫匯入對應關係

 

◆在Python2.X中使用import urllib2——對應的,在Python3.X中會便用import urllib.request, urllib.error

◆在Python2.X中使用import urllib——對應的,在Python3.X中會使用import urllib.request, urllib.error, urllib.parse

◆在Python2.X中使用import urlparse——對應的,在Python3.X中會使用import urllib.parse

◆在Python2.X中使用urllib2.urlopen——對應的,在Python3.X中會使用urllib.request.urlopen

◆在Py山on2.X中使用urllib.urlencode——對應的,在Python3.X中會使用urllib.parse.urlencode

◆在Python2.X中使用urllib.quote——對應的,在Python3.X中會使用urllib.request.quote

◆在Python2.X中使用cookielib.CookieJar一對應的,在Python3.X中會使用http.CookieJar

◆在Python2.X中使用urllib2.Request——對應的,在Python3.X中會使用urllib.request.Request