python3.3使用urllib2报错 no module named urllib2,原因是python3中将urllib2换成了request。
所以要使用import urllib.request,这个打开help(urllib.request)可以看到需要使用
urllib.request.urlopen(url)来实现http请求