I'm trying to parse following xml file with xml.etree
. However, it does't produce any results.
from xml.etree import cElementTree as ET
xmlstr = """<?xml version='1.0' encoding='UTF-8'?>
<tns:getCamerasResponse xmlns:tns="https://infoconnect.highwayinfo.govt.nz/schemas/camera2">
<tns:camera>
<tns:description>North along Sth Wstn Mwy from May Rd</tns:description>
<tns:direction>Northbound</tns:direction>
<tns:group>NA</tns:group>
<tns:id>653</tns:id>
<tns:imageUrl>http://www.trafficnz.info/camera/653.jpg</tns:imageUrl>
<tns:lat>-36.90943</tns:lat>
<tns:lon>174.73442</tns:lon>
<tns:name>SH20 May Rd Overbridge</tns:name>
<tns:offline>false</tns:offline>
<tns:region>Auckland</tns:region>
<tns:thumbUrl>http://www.trafficnz.info/camera/thumb/653.jpg</tns:thumbUrl>
<tns:underMaintenance>false</tns:underMaintenance>
<tns:viewUrl>http://www.trafficnz.info/camera/view/653</tns:viewUrl>
</tns:camera>
</tns:getCamerasResponse>"""
root = ET.fromstring(xmlstr)
results = root.findall('tns:camera', {'tns':"https://infoconnect.highwayinfo.govt.nz/schemas/camera2"})
for camera in results:
region = camera.find('tns:region')
if region is not None:
print(region.text)