import xml.dom.minidom
document = """\
<parent>
<child1>value 1</child1>
<child2>value 2</child2>
<child3>value 3</child3>
</parent>
"""
def getText(nodelist):
rc = []
for node in nodelist:
if node.nodeType == node.TEXT_NODE:
rc.append(node.data)
else:
print "not text: "+ node.toxml()
return ''.join(rc)
def handleParent(family):
handleChild(family.getElementsByTagName("parent")[0])
def handleChild(parent):
print getText(parent.childNodes)
dom = xml.dom.minidom.parseString(document)
handleParent(dom)
Can anyone tell me why this code will not grab the values between the child tags? This is a stripped down example from here http://docs.python.org/library/xml.dom.minidom.html
This is the output:
not text: <child1>value 1</child1>
not text: <child2>value 2</child2>
not text: <child3>value 3</child3>
Thanks for the help.