I have an Xml w/c look like this:
then my problem is how can I get the child nodes of process w/c are "proc1" and "proc2"?
then i also need to get the value of these child nodes(example "src,dst" for <copyfile>)..
im using xml.dom.minidom module
Im hoping for your response guys...
Code:
<xml> <process name="proc1"> <mkdir>directory</mkdir> <copyfile>src,dst</copyfile> </process> <process name="proc2"> <copyfile>src,dst</copyfile> </process> </xml>
then i also need to get the value of these child nodes(example "src,dst" for <copyfile>)..
im using xml.dom.minidom module
Im hoping for your response guys...
Comment