“Python Lire XML” Réponses codées

Python Lire XML

from xml.dom import minidom

# parse an xml file by name
mydoc = minidom.parse('items.xml')

items = mydoc.getElementsByTagName('item')

# one specific item attribute
print('Item #2 attribute:')
print(items[1].attributes['name'].value)

# all item attributes
print('\nAll attributes:')
for elem in items:
    print(elem.attributes['name'].value)

# one specific item's data
print('\nItem #2 data:')
print(items[1].firstChild.data)
print(items[1].childNodes[0].data)

# all items data
print('\nAll item data:')
for elem in items:
    print(elem.firstChild.data)
Quaint Quelea

Python String à XML

import xml.etree.ElementTree as ET

root = ET.fromstring(country_data_as_string)
Kaeffa

Comment ouvrir l'arborescence des éléments de fichier 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
TheRubberDucky

Python ElementTree Charge à partir de la chaîne

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

Lire le fichier XML dans Python

import  xml.dom.minidom
from xml.dom import getChildNodesByName


xdom = xml.dom.minidom.parse("GenericAddressing.xml")
xdoc = xdom.documentElement
dict = {}
xml_funcs = getChildNodesByName(xdoc, u"Function")
for func in xml_funcs:
    shortname = func.getAttribute(u"Name")
    address = func.getAttribute(u"Address")
    for name in  getChildNodesByName(func, u"Name"):
        longname = name.firstChild.nodeValue
        dict[hex(int(address))[2:].upper()] = (shortname, longname)
        break
Pythonist

chaîne XML Python Parse

root = ET.fromstring(xmlData)
Confused Crane

Réponses similaires à “Python Lire XML”

Questions similaires à “Python Lire XML”

Plus de réponses similaires à “Python Lire XML” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code