码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-12-25 12:41:33      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

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

#coding:utf-8

import urllib2, json
from city import city

yourcity = 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 jsondata

temp_low = jsondata[weatherinfo][temp1]
print temp_low
temp_high = jsondata[weatherinfo][temp2]
weather = jsondata[weatherinfo][weather]

print weather
print temp_low + "~" + temp_high 

 

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

标签:

原文地址:http://www.cnblogs.com/wangjibo/p/4184242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!