我目前正在python中创建一个需要xml操作的项目。要操作xml文件,我将使用Elementtree。以前从未使用过该模块。我曾经使用过php,但是完全不同。
我有以下xml文件:
<myvideos>
<video>
<title>video1</title>
<plot>description bla bla bla</plot>
<duration>50</duration>
</video>
<video>
<title>name2</title>
<plot>another description bla bla bla</plot>
<duration>37</duration>
</video>
<video>
<title>another name etc</title>
<plot>description etc...</plot>
<duration>99</duration>
</video>
</myvideos>
我想要做的是按视频标题搜索(例如“name2”),然后删除或编辑该视频条目。 Exemples:
1)搜索标题为“name2”的视频并删除视频条目:
<myvideos>
<video>
<title>video1</title>
<plot>description bla bla bla</plot>
<duration>50</duration>
</video>
<video>
<title>another name etc</title>
<plot>description etc...</plot>
<duration>99</duration>
</video>
</myvideos>
2)搜索标题为“name2”的视频并编辑该条目:
<myvideos>
<video>
<title>video1</title>
<plot>description bla bla bla</plot>
<duration>50</duration>
</video>
<video>
<title>name2renamed</title>
<plot>edited</plot>
<duration>9999</duration>
</video>
<video>
<title>another name etc</title>
<plot>description etc...</plot>
<duration>99</duration>
</video>
</myvideos>
答案 0 :(得分:1)
是的,可以使用ElementTree来做到这一点。 .remove()
函数可以从XML树中删除XML元素。以下是如何从XML文件中删除名为name2
的所有视频的示例:
import xml.etree.ElementTree as ET
tree = ET.parse('in.xml')
root = tree.getroot()
items_to_delete = root.findall("./video[title='name2']")
for item in items_to_delete:
root.remove(item)
tree.write('out.xml')
参考: