python2 、python3 urllib 模块一些特别的对应关系
python2 "from urllib import quote" 对应 python3 "from urllib import parse" urillb2在python3中的变化。 在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