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