首页 > 代码库 > 通过中国天气网的通用接口查询天气
通过中国天气网的通用接口查询天气
通过中国天气网的通用接口查询天气。
#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
通过中国天气网的通用接口查询天气
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。