Infi-chu:cookie
http://www.cnblogs.com/Infi-chu/url
Py2.x:code
Urllib
庫blog
Urllin2
庫get
Py3.x:import
Urllib
庫request
變化:im
import urllib2
——-對應的,在Python3.x中會使用import urllib.request
,urllib.error
。import urllib
——-對應的,在Python3.x中會使用import urllib.request
,urllib.error
,urllib.parse
。import urlparse
——-對應的,在Python3.x中會使用import urllib.parse
。import urlopen
——-對應的,在Python3.x中會使用import urllib.request.urlopen
。import urlencode
——-對應的,在Python3.x中會使用import urllib.parse.urlencode
。import urllib.quote
——-對應的,在Python3.x中會使用import urllib.request.quote
。cookielib.CookieJar
——-對應的,在Python3.x中會使用http.CookieJar
。urllib2.Request
——-對應的,在Python3.x中會使用urllib.request.Request
。