web-dev-qa-db-fra.com

comment supprimer l'attribut d'un élément etree?

J'ai Element of etree ayant quelques attributs - comment pouvons-nous supprimer l'attribut de l'élément etree perticular.

38
shahjapan

Le membre .attrib De l'objet élément contient le dict des attributs - vous pouvez utiliser .pop("key") ou delcomme vous le feriez sur tout autre dict pour supprimer une paire clé-val.

36
Amber

Exemple:

>>> 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"/>'

Attention parfois, vous n'avez pas l'attribut:

Il est toujours suggéré de gérer les exceptions.

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

Tu n'as pas besoin de try/except pendant que vous saisissez une clé qui n'est pas disponible. Voici comment procéder.

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>'
4
A.J.