!7 p { S url = "http://api.openweathermap.org/data/2.5/forecast"; S xml = /*postPage*/loadPageWithParams(url, APPID := openWeatherMapAPIKey(), q := "Hamburg", mode := "xml"); print(xml); for (L tTime : findContainerOrEmptyTag(xml, "time")) { S from = tagParam(tTime, "from"); print("From: " + from); pnlStruct(findContainerOrEmptyTag(tTime, "temperature")); } }