ElementTree - ParseError: not well-formed (invalid token)

5.1k Views Asked by At

I'm trying to open an XML file using urlopen and reading it. However, I keep getting the following error: xml.etree.ElementTree.ParseError: not well-formed (invalid token)

Here is the code:

    def wx(icao):
        if re.search(r'!wx *\w', icao):
            icao = ircmsg.split('PRIVMSG')[-1].split(':!wx')[1]

            icao = icao.upper()

            link = urlopen('http://w1.weather.gov/xml/current_obs/%s.xml' % icao)
            doc = link.read()

            parser = ET.XMLParser(encoding='utf-8')
            tree = ET.fromstring(doc, parser=parser)

            station_id = tree.find('station_id').text
            location = tree.find('location').text
            observation_time = tree.find('observation_time_rfc822').text
            wind = tree.find('wind_string').text
            vis = tree.find('visibility_mi').text
            weather = tree.find('weather').text
            temp = tree.find('temperature_string').text
            dew = tree.find('dewpoint_string').text
1

There are 1 best solutions below

2
On

I guess the problem lies in this line tree = ET.fromstring(doc, parser=parser). Change this to

 tree = ET.fromstring(doc)

It seems ET.fromstring accepts one parameter.