使用命名空间(gml)解析XML

时间:2017-10-09 11:24:13

标签: python python-3.x xml-parsing

我正在尝试解析我的xml文件,我觉得它有效,但是当我打印坐标时,我只能在我的控制台上看到它:" []"。

我的代码如下所示:

tree = ET.parse(url)
root = tree.getroot()
namespaces = {'gml': 'http://www.opengis.net/gml#'}
print(root.findall('gml:coordinates', namespaces))

1 个答案:

答案 0 :(得分:0)

write

这不是完全相同的代码,但它做了我想要的,所以这是对我的问题的回答。