使用python查询xpath中的抽象元素
我想对 KML 架构上的抽象元素进行一些 xpath 查询 (类似于 kml 文件上的 //AbstractFeatureType
)。
我是Python方面的菜鸟,这使得研究和试验非常痛苦,有人在开发过程中遇到过这种野兽吗?
谢谢,
尼科。
I'd like to make some xpath queries over abstract elements on the KML schema (like //AbstractFeatureType
on a kml file).
I'm a noob in python and that make the research and trial quite painful, has anybody crossed the path of this beast during their developing hours?
Thanks,
Nico.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是使用您提供的页面的尝试。我的代码返回具有 tagtype==attrib 的元素列表。 s 是包含您的 xml/kml 的字符串。
This is just an attempt using the page you provided. My code returns a list of elements who have tagtype==attrib. s is a string with your xml/kml.