xml.etree.ElementTree.ElementTree | Python

 

Descripción

La clase ElementTree en el módulo xml.etree.ElementTree de Python se utiliza para representar un árbol XML en la memoria. Esta clase proporciona métodos para encontrar, modificar y navegar elementos en el árbol XML.

Sintaxis

class ElementTree

Constructores

Métodos

Ejemplo

from xml.etree.ElementTree import ElementTree
tree = ElementTree()
root = tree.parse('example.xml')
for element in tree.iter():
    print(element.tag, element.attrib)

Este es un ejemplo sencillo de cómo utilizar la clase ElementTree para parsear un archivo XML y recorrer sus elementos.

Artículos

Manual Python

Aprende más sobre Python consultando online o descargando nuestro manual.