Searching Is Actually Recursive : XML Element : XML PYTHON examples


PYTHON examples » XML » XML Element »

 

Searching Is Actually Recursive



from xml.dom import minidom 
xmldoc = minidom.parse('binary.xml') 
reflist = xmldoc.getElementsByTagName('ref')      


firstref = reflist[0]                             
print firstref.toxml() 

plist = firstref.getElementsByTagName("p")        
plist = xmldoc.getElementsByTagName("p")          
plist 

plist[0].toxml()                                  

plist[1].toxml() 

plist[2].toxml()                                  

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo XML
» XML Element