使用wunderground历史API失败

时间:2017-12-20 12:01:03

标签: python python-3.x weather-api wunderground

我正在尝试使用wunderground api获取纬度和经度的历史天气数据。

这是我的python代码:

import requests
import pprint

data = requests.get('http://api.wunderground.com/api/<MY_KEY>/history_199271/q/12.3,-95.9.json').json()
pprint.pprint(data)

响应:

{'response': {'error': {'description': 'No cities match your search query',
                    'type': 'querynotfound'},
          'features': {'history': 1},
          'termsofService': 'http://www.wunderground.com/weather/api/d/terms.html',
          'version': '0.1'}}

你知道什么是错的吗?

编辑:如果您知道任何其他API或python模块按地理坐标提供历史天气数据,那也没关系。

0 个答案:

没有答案