我正在尝试使用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模块按地理坐标提供历史天气数据,那也没关系。