how to remove attribute of a etree Element?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-20 10:17:38

问题


I've Element of etree having some attributes - how can we delete the attribute of perticular etree Element.


回答1:


The .attrib member of the element object contains the dict of attributes - you can use .pop("key") or del like you would on any other dict to remove a key-val pair.




回答2:


Example :

>>> from lxml import etree 
>>> from lxml.builder import E
>>> otree = E.div()
>>> otree.set("id","123")
>>> otree.set("data","321")
>>> etree.tostring(otree)
'<div id="123" data="321"/>'
>>> del otree.attrib["data"]
>>> etree.tostring(otree)
'<div id="123"/>'

Take care sometimes you dont have the attribute:

It is always suggested that we handle exceptions.

try:
    del myElement.attrib["myAttr"]
except KeyError:
    pass



回答3:


You do not need to try/except while you are popping a key which is unavailable. Here is how you can do this.

Code

import xml.etree.ElementTree as ET

tree = ET.parse(file_path)
root = tree.getroot()      

print(root.attrib)  # {'xyz': '123'}

root.attrib.pop("xyz", None)  # None is to not raise an exception if xyz does not exist

print(root.attrib)  # {}

ET.tostring(root)
'<urlset> <url> <changefreq>daily</changefreq> <loc>http://www.example.com</loc></url></urlset>'


来源:https://stackoverflow.com/questions/2720396/how-to-remove-attribute-of-a-etree-element

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!