I'm able to find weather report of cities of US and I want to extend it for the cities in India. It will be still better if I could do it for all the cities in the world. This is the code i was using.

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"`

I'm not able to find a code for Indian states, cities codes, for which i can replace with RSXX0199. By the way, I'm using Python API for weather, which internally uses Yahoo's weather API.

Please help me out.

Thank you.

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

If you look at the RSS feed of an individual location, the identifier you are looking for is in it's address.

For instance, Karimnagar, India's RSS feed is "weather.yahooapis.com/forecastrss?p=INXX0358&u=f" and can be retrieved by clicking the RSS button in the top right.

link|improve this answer
Thanks its working :) but still i'm not able to find out how to get values of P? i'm not able to figure it out how to get values for p.. Please share me some link that has codes for all the cities.. – Bhuvan raj Aug 25 '11 at 17:18
I could find the code for cities only by clicking that rss link, its not robust to check the code for each city and update, can you please suggest better solution for finding the value of p, by giving just location name!? – Bhuvan raj Aug 25 '11 at 17:34
So, you want a way to give the city and get the code, through the python API? – Lomky Aug 25 '11 at 18:57
If you haven't already written all your processing code, you could simply use pywapi.get_weather_from_google which can take city and country. I don't see a way to use the API to get the code based on city/country for yahoo. – Lomky Aug 25 '11 at 19:32
i actually tried google's weather api too, it is also taking just US zip code which is oly 5 digits. Its not taking India's zip code :( – Bhuvan raj Aug 26 '11 at 17:54
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.