到目前为止,我已经生成了以下代码:
import requests
def weatherSearch():
Search = raw_input('Enter your location: ')
r = requests.get("http://api.wunderground.com/api/a8c3e5ce8970ae66/conditions/q/{}.json".format(Search))
weatherData = r.json()
print weatherData
weatherSearch()
例如,如果Search
设置为London
,则会生成:
http://api.wunderground.com/api/a8c3e5ce8970ae66/conditions/q/London.json
但是,这个.json不包含我想要找到的温度:"temp_c":
在以下链接中,可以找到"temp_c":
:
http://api.wunderground.com/api/a8c3e5ce8970ae66/conditions/q/CA/San_Francisco.json
为了检索天气数据,我很难理解我做错了什么。
答案 0 :(得分:1)
看起来您的查询会返回可能匹配的列表,每个匹配都包含一个包含链接的l
密钥。使用该链接可以返回该位置的完整数据。因此,例如,伦敦,英国的完整数据为http://api.wunderground.com/api/a8c3e5ce8970ae66/conditions/q/zmw:00000.1.03772.json。