gpt4 book ai didi

python - 使用Python xml.etree解析xml文件: empty results

转载 作者:行者123 更新时间:2023-12-01 07:13:46 24 4
gpt4 key购买 nike

我正在尝试使用 xml.etree 解析以下 xml 文件。但是,它不会产生任何结果。

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)

最佳答案

您需要在查找方法中考虑命名空间。

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)

ns = {'tns':"https://infoconnect.highwayinfo.govt.nz/schemas/camera2"}
results = root.findall('tns:camera', ns)
for camera in results:
region = camera.find('tns:region', ns)
if region is not None:
print(region.text)

如果您需要知道如何获取 namespace ,这可能会有所帮助 Python: ElementTree, get the namespace string of an Element

关于python - 使用Python xml.etree解析xml文件: empty results,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58089012/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com