vote up 5 vote down star

Hi Guys,

I am creating a GUI frontend for the Eve Online API in Python.

I have successfully pulled the XML data from their server.

I am trying to grab the value from a node called "name"

from xml.dom.minidom import parse
dom = parse("C:\\eve.xml")
name = dom.getElementsByTagName('name')
print name

This seems to find the node ok but the output is below:

[<DOM Element: name at 0x11e6d28>]

How could I get it to print the value of the node?

Cheers

flag

2 Answers

vote up 2 vote down check

It should just be

name[0].nodeValue
link|flag
When I do name[0].nodeValue is gives back "None", just to test I passed it name[0].nodeName and it gave me "name" which is correct. Any ideas? – Eef Nov 25 '08 at 14:09
What about name[0].firstChild.nodeValue ? – eduffy Nov 25 '08 at 14:49
Just beware that you are not relying on implementation details in the xml-generator. There are no guarantees that the first child is the text node nor the only text node in any cases where there can be more than one child node. – Henrik Gustafsson Nov 26 '08 at 16:32
vote up 3 vote down

Probably something like this if it's the text part you want...

from xml.dom.minidom import parse
dom = parse("C:\\eve.xml")
name = dom.getElementsByTagName('name')

print " ".join(t.nodeValue for t in name[0].childNodes if t.nodeType == t.TEXT_NODE)

The text part of a node is considered a node in itself placed as a child-node of the one you asked for. Thus you will want to go through all its children and find all child nodes that are text nodes. A node can have several text nodes; eg.

<name>
  blabla
  <somestuff>asdf</somestuff>
  znylpx
</name>

You want both 'blabla' and 'znylpx'; hence the " ".join(). You might want to replace the space with a newline or so, or perhaps by nothing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.