I'm trying to parse data from a xml file downloaded from https://www.treasury.gov/ofac/downloads/...idated.xml
Sample of the xml file is attached.
I tried to parse the data, but it was not successful. Output i'm getting for "firstname" is an empty list
Appreciate if some can help on this.
Sample of the xml file is attached.
I tried to parse the data, but it was not successful. Output i'm getting for "firstname" is an empty list
Appreciate if some can help on this.
import xml.etree.ElementTree as ET file = ET.parse(r'D:\path\to\file\test.xml') for node in file.getroot(): print(node) firstname = node.findall('firstName') print(firstname)
Output:<Element '{http://tempuri.org/sdnList.xsd}publshInformation' at 0x000001A18F7F8098>
[]
<Element '{http://tempuri.org/sdnList.xsd}sdnEntry' at 0x000001A18F8091D8>
[]
<Element '{http://tempuri.org/sdnList.xsd}sdnEntry' at 0x000001A18F809E08>
[]
Attached Files