Processing Forum
XMLElement xml;
void setup() {
size(200, 200);
String url = "http://www.google.com/ig/api?weather=NE17RU";
xml = new XMLElement(this, url);
println(xml);
XMLElement weather = xml.getChild("weather");
XMLElement current = weather.getChild("current_conditions");
String condition = current.getString("condition data");
println(condition);
}