首页 > 代码库 > 通过中国天气网的通用接口查询天气

通过中国天气网的通用接口查询天气

通过中国天气网的通用接口查询天气。

#coding:utf-8import urllib2, jsonfrom city import cityyourcity = raw_input("你想查那个城市的天气?")#yourcity = ‘杭州‘url = "http://www.weather.com.cn/data/cityinfo/" + city[yourcity] + ".html"response = urllib2.urlopen(url, timeout=10)city_dict = response.read()jsondata = json.JSONDecoder().decode(city_dict)print jsondatatemp_low = jsondata[weatherinfo][temp1]print temp_lowtemp_high = jsondata[weatherinfo][temp2]weather = jsondata[weatherinfo][weather]print weatherprint temp_low + "~" + temp_high 

 

通过中国天气网的通用接口查询天气