En Fri, 24 Jul 2009 14:56:29 -0300, Ronn Ross
escribió:
On Tue, Jul 21, 2009 at 7:32 PM, Gabriel Genellina
wrote:
En Tue, 21 Jul 2009 21:08:57 -0300, Ronn Ross
escribió:
Hello I'm trying to read an xml file using minidome. The xml looks
like:
myProj
/here/
I have used
On Tue, Jul 21, 2009 at 7:32 PM, Gabriel Genellina
wrote:
> En Tue, 21 Jul 2009 21:08:57 -0300, Ronn Ross
> escribió:
>
>
> Hello I'm trying to read an xml file using minidome. The xml looks like:
>>
>>
>> myProj
>> /here/
>>
>>
>>
>> My code looks like so:
>> from xml.dom.mini
On Jul 21, 2009, at 8:08 PM, Ronn Ross wrote:
Hello I'm trying to read an xml file using minidome. The xml looks
like:
myProj
/here/
My code looks like so:
from xml.dom.minidom import parse
dom = parse("myfile.xml")
for node in dom.getElementsByTagName("project'):
p
En Tue, 21 Jul 2009 21:08:57 -0300, Ronn Ross
escribió:
Hello I'm trying to read an xml file using minidome. The xml looks like:
myProj
/here/
My code looks like so:
from xml.dom.minidom import parse
dom = parse("myfile.xml")
for node in dom.getElementsByTagName("proj
Hello I'm trying to read an xml file using minidome. The xml looks like:
myProj
/here/
My code looks like so:
from xml.dom.minidom import parse
dom = parse("myfile.xml")
for node in dom.getElementsByTagName("project'):
print('name: %s, path: %s \n') % (node.childNodes[0]