Python beginner here. I am trying to parse the structure of an XML file, using minidom. The XML structure is like this:
...
<Node Precode="1">
<Text Id="9">sometext 1</Text>
</Node>
...
I am trying to add all node elements into a list, using a recursive function (not of my own design, found on stackoverflow and adapted to my needs). The current status is this:
from xml.dom import minidom
list_to_write=[]
def parse_node(root):
if root.childNodes:
for node in root.childNodes:
if node.nodeType == node.ELEMENT_NODE:
new_node = [node.tagName,node.parentNode.tagName,node.getAttribute('Precode'),node.attributes.items()]
list_to_write.append(new_node)
parse_node(node)
return list_to_write
How can I extract the "sometext" text and add it as an element in the list_to_write
list?
I assume you have a nodes.xml:
And you can take the bellow code to get the texts :
The result is: