如何获取lxml.etree._ElementTree对象的父路径

时间:2018-11-06 12:05:31

标签: python lxml lxml.objectify

使用lxml库,我已经将一些元素(下面的示例代码)对象化了

config = objectify.Element("config")
gui = objectify.Element("gui")
color = objectify.Element("color")
gui.append(color)
config.append(gui)
config.gui.color.active = "red"
config.gui.color.readonly = "black"
config.gui.color.match = "grey"

结果是以下结构

config
config.gui
config.gui.color
config.gui.color.active
config.gui.color.readonly
config.gui.color.match

我可以获得每个对象的完整路径

for element in config.iter():
print(element.getroottree().getpath(element))

路径元素之间用斜杠分隔,但这不是问题。我不知道如何仅获取路径的父级部分,因此可以使用setattr更改给定元素的值

例如元素

config.gui.color.active

我想输入命令

setattr(config.gui.color, 'active', 'something')

但是不知道如何获得完整路径的“父”部分。

1 个答案:

答案 0 :(得分:2)

您可以使用getparent函数获取元素的父级。

for element in config.iter():
    print("path:", element.getroottree().getpath(element))
    if element.getparent() is not None:
        print("parent-path:", element.getroottree().getpath(element.getparent()))

您也可以只删除元素路径本身的最后一部分。

for element in config.iter():
    path = element.getroottree().getpath(element)
    print("path:", path)
    parts = path.split("/")
    parent_path = "/".join(parts[:-1])
    print("parent-path:", parent_path)