xml minidom redundant children??

B

bkamrani

Great guys:

As a newbie, I'm trying to simply parse a xml file using minidom, but
I don't know why I get some extra children(?). I don't know what is
wrong in xml file, but I've tried different xml files, still same
problem.

******************************************************************************
xml file (fileTest) looks like:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<afc xmlns="http://python.org/:aaa" xmlns:afc="http://
python.org/:foo">
<afc:Bibliography>
<File version="2.0.0.0" publicationDate="2007-02-16
11:23:06+01:00" />
<Revision version="2" />
<Application version="02.00.00" />
</afc:Bibliography>
</afc>
******************************************************************************
Python file looks like:
from xml.dom import minidom
doc = minidom.parse(fileTest)
a= doc.documentElement.childNodes
print a
print '--------------'
for item in a:
print item.nodeName
******************************************************************************
And output is:
[<DOM Text node "\n">, <DOM Element: afc:Bibliography at 12082960>,
<DOM Text node "\n">]
--------------
#text
afc:Bibliography
#text
******************************************************************************

My question is why this <DOM Text node "\n"> or #text has been
created and how to get rid of them by changing python code? (here I'm
not interested to change xml file.)

Have search the forum without finding any solution :-(

Thank you to all in advance!!
/Ben
 
M

Marc 'BlackJack' Rintsch

bkamrani said:
******************************************************************************
xml file (fileTest) looks like:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<afc xmlns="http://python.org/:aaa" xmlns:afc="http://
python.org/:foo">
<afc:Bibliography>
<File version="2.0.0.0" publicationDate="2007-02-16
11:23:06+01:00" />
<Revision version="2" />
<Application version="02.00.00" />
</afc:Bibliography>
</afc>
******************************************************************************
Python file looks like:
from xml.dom import minidom
doc = minidom.parse(fileTest)
a= doc.documentElement.childNodes
print a
print '--------------'
for item in a:
print item.nodeName
******************************************************************************
And output is:
[<DOM Text node "\n">, <DOM Element: afc:Bibliography at 12082960>,
<DOM Text node "\n">]
--------------
#text
afc:Bibliography
#text
******************************************************************************

My question is why this <DOM Text node "\n"> or #text has been
created and how to get rid of them by changing python code? (here I'm
not interested to change xml file.)

They have been created because the text is in the XML source. Line breaks
are valid text.

Ciao,
Marc 'BlackJack' Rintsch
 
D

Diez B. Roggisch

Great guys:

As a newbie, I'm trying to simply parse a xml file using minidom, but
I don't know why I get some extra children(?). I don't know what is
wrong in xml file, but I've tried different xml files, still same
problem.

******************************************************************************
xml file (fileTest) looks like:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<afc xmlns="http://python.org/:aaa" xmlns:afc="http://
python.org/:foo">
<afc:Bibliography>
<File version="2.0.0.0" publicationDate="2007-02-16
11:23:06+01:00" />
<Revision version="2" />
<Application version="02.00.00" />
</afc:Bibliography>
</afc>
******************************************************************************
Python file looks like:
from xml.dom import minidom
doc = minidom.parse(fileTest)
a= doc.documentElement.childNodes
print a
print '--------------'
for item in a:
print item.nodeName
******************************************************************************
And output is:
[<DOM Text node "\n">, <DOM Element: afc:Bibliography at 12082960>,
<DOM Text node "\n">]
--------------
#text
afc:Bibliography
#text
******************************************************************************

My question is why this <DOM Text node "\n"> or #text has been
created and how to get rid of them by changing python code? (here I'm
not interested to change xml file.)

Have search the forum without finding any solution :-(

You can't get rid of them by itself - xml.minidom can't possibly know if
whitespace is of any significance for you or not.

There are several ways to deal with this. If you have to stay in
minidom, just loop over the children and discard all whitespace-only
text-nodes, before really processing the document.

But the better alternative would be to use a better API for processing
XML. Use one of the several ElementTree implementations, such as lxml:

http://codespeak.net/lxml/

This will not rid you of the whitespace itself, but represents text
differently so that you can focus on elements without intespersed
text-nodes.

Diez
 
M

MonkeeSage

As a newbie, I'm trying to simply parse a xml file using minidom, but
I don't know why I get some extra children(?). I don't know what is
wrong in xml file, but I've tried different xml files, still same
problem.

Most simply, if you need to stick with xml.dom.minidom; just check the
nodeType and make sure its not 3 (textNode):

from xml.dom import minidom
doc = minidom.parse(fileTest)
for item in doc.documentElement.childNodes:
if not item.nodeType == 3:
print item.nodeName

Regards,
Jordan
 
G

Gabriel Genellina

As a newbie, I'm trying to simply parse a xml file using minidom, but
I don't know why I get some extra children(?). I don't know what is
wrong in xml file, but I've tried different xml files, still same
problem.

If you don't have to use exactly xml.dom.minidom, try using ElementTree
http://www.effbot.org/zone/element-index.htm (it's already included with
Python 2.5, for earlier versions you have to download and install it).
It's a lot easier and clean if you are mostly concerned about the infoset
rather than its representation.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,765
Messages
2,569,568
Members
45,042
Latest member
icassiem

Latest Threads

Top