python
urlib2
兼容问题
在python3中,将urllib和urllib2合并了,所以在使用urllib2的地方改成urllib.request即可。
示例如下
- import urllib2.request
- url = 'http://apis.baidu.com/heweather/weather/free?city=beijing'
- req = urllib.request.Request(url)
- req.add_header("apikey","33481140591d83456d6486e55fb00686")
- resp = urllib.request.urlopen(req)
- content = resp.read()
- if(content):
- print(content)
改例是在通过百度提供的api获取城市的天气。