Saltar al contenido

ejemplo de código xml.etree.ElementTree

Esta es el arreglo más correcta que encomtrarás dar, pero primero estúdiala detenidamente y valora si se adapta a tu proyecto.

Ejemplo 1: python elementtree build xml

import xml.etree.cElementTree as ET

root = ET.Element("root")
doc = ET.SubElement(root, "doc")

ET.SubElement(doc, "field1", name="blah").text = "some value1"
ET.SubElement(doc, "field2", name="asdfasd").text = "some vlaue2"

tree = ET.ElementTree(root)
tree.write("filename.xml")

Ejemplo 2: cómo abrir el árbol de elementos del archivo xml

import xml.etree.ElementTree as ET

tree = ET.parse('filename.xml') #this gets the file into a tree structure
tree_root = tree.getroot() #this gives us the root element of the file

Ejemplo 3: pitón string a xml

import xml.etree.ElementTree as ET

root = ET.fromstring(country_data_as_string)

Ejemplo 4: carga del árbol de elementos de python desde string

from xml.etree.ElementTree import XML, fromstring
myxml = fromstring(text)

Ejemplo 5: xml.etree.ElementTree.ParseError

Check syntax of the xml file

Te mostramos las comentarios y valoraciones de los lectores

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *