使用python查询xpath中的抽象元素

发布于 2024-11-14 05:51:32 字数 243 浏览 1 评论 0原文

我想对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

输什么也不输骨气 2024-11-21 05:51:32

这只是使用您提供的页面的尝试。我的代码返回具有 tagtype==attrib 的元素列表。 s 是包含您的 xml/kml 的字符串。

import lxml.etree as etree
def find(s,attrib,tagtype='*'):
    tree = etree.fromstring(s)
    return tree.xpath(r'.//%s[@*="%s"]'%(tagtype,attrib))

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.

import lxml.etree as etree
def find(s,attrib,tagtype='*'):
    tree = etree.fromstring(s)
    return tree.xpath(r'.//%s[@*="%s"]'%(tagtype,attrib))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文