我能够找到美国城市的天气报告,我想将其扩展到印度的城市。如果我能为世界上所有的城市都这样做,那就更好了。这是我使用的代码。
import pywapi
import string
yahoo_result = pywapi.get_weather_from_yahoo('RSXX0199', 'metric')
print "Yahoo says: It is " + string.lower(yahoo_result['condition']['text']) + " and " + yahoo_result['condition']['temp'] + "C now in New York.\n\n"`
我找不到印度各州、城市代码的代码,我可以用RSXX0199
. 顺便说一句,我正在使用 Python API for weather,它在内部使用 Yahoo 的天气 API。
请帮帮我。
谢谢你。