Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to parse data from a website and cannot print the data.

import xml.etree.ElementTree as ET
from urllib import urlopen

link = urlopen('http://weather.aero/dataserver_current/httpparam?dataSource=metars&requestType=retrieve&format=xml&stationString=KSFO&hoursBeforeNow=1')

tree = ET.parse(link)
root = tree.getroot()

data = root.findall('data/metar')
for metar in data:
    print metar.find('temp_c').text
share|improve this question
How would I go about parsing the sky condition? 1) The string is conditional based on the weather so it/s always changing. 2) It's not like temp_c and temp_f, all the sky conditions are in one field name. – Savvis Oct 23 '12 at 6:20

1 Answer

up vote 2 down vote accepted

It is case sensitive:

data = root.findall('data/METAR')
share|improve this answer
That was it. Thanks. – Savvis Oct 23 '12 at 2:40
@Savvis If this answers your question, you should mark it as the accepted answer (meta.stackoverflow.com/faq#howtoask) – gecco Oct 23 '12 at 7:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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