Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have many rows in a database that contain xml and I'm trying to write a python script that will go through those rows and count how many instances of a particular node attribute show up. for instance, my tree looks like:

<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>

How can I access the attributes 1 and 2 in the XML using Python?

share|improve this question
40  
Huh? Closed as not constructive? That must be a mistake. – Frank Aug 2 '12 at 5:42
13  
This IS constructive! – Cek Aug 15 '12 at 20:47
3  
Superlatives ("easiest", "best") generally aren't, mostly because the criterion isn't defined. meta.stackoverflow.com/a/136768/162324 – Félix Saparelli Oct 2 '12 at 14:20
@Frank, I voted to reopen. You could/should add your vote too. – missingfaktor Oct 5 '12 at 12:40

7 Answers

up vote 72 down vote accepted

I suggest ElementTree (there are other compatible implementatons, such as lxml, but what they add is "just" even more speed -- the ease of programming part depends on the API, which ElementTree defines.

After building an Element instance e from the XML, e.g. with the XML function, just:

for atype in e.findall('type')
  print(atype.get('foobar'))

and the like.

share|improve this answer
4  
You seem to ignore xml.etree.cElementTree which comes with Python and in some aspects is faster tham lxml ("lxml's iterparse() is slightly slower than the one in cET" -- e-mail from lxml author). – John Machin Dec 16 '09 at 11:37

minidom is the quickest and pretty straight forward:

XML:

<data>
    <items>
    	<item name="item1"></item>
    	<item name="item2"></item>
    	<item name="item3"></item>
    	<item name="item4"></item>
    </items>
</data>

PYTHON:

from xml.dom import minidom
xmldoc = minidom.parse('items.xml')
itemlist = xmldoc.getElementsByTagName('item') 
print len(itemlist)
print itemlist[0].attributes['name'].value
for s in itemlist :
    print s.attributes['name'].value

OUTPUT

4 item1 item1 item2 item3 item4

share|improve this answer
Really Helpful! Thanks for the simple example – Nimbuz Jan 19 '10 at 6:51
How do you get the value of "item1"? For example: <item name="item1">Value1</item> – swmcdonnell Feb 13 at 14:03
5  
I figured it out, in case anyone has the same question. It's s.childNodes[0].nodeValue – swmcdonnell Feb 13 at 18:04

You can use BeautifulSoup

from BeautifulSoup import BeautifulSoup

x="""<foo>
   <bar>
      <type foobar="1"/>
      <type foobar="2"/>
   </bar>
</foo>"""

y=BeautifulSoup(x)
>>> y.foo.bar.type["foobar"]
u'1'

>>> y.foo.bar.findAll("type")
[<type foobar="1"></type>, <type foobar="2"></type>]

>>> y.foo.bar.findAll("type")[0]["foobar"]
u'1'
>>> y.foo.bar.findAll("type")[1]["foobar"]
u'2'
share|improve this answer
1  
Interesting, I've always thought of Beautiful Soup as a brilliant HTML parsing library and API, but for some reason I never really thought of using it for XML. Hmmm… – Avi Flax Dec 16 '09 at 5:24
3  
Actually, There is BeautifulStoneSoup in BeautifulSoup for XML – YOU Dec 16 '09 at 5:28
5  
I wouldn't rely too much on BeautifulSoup now that its future is uncertain. crummy.com/software/BeautifulSoup/3.1-problems.html – ibz Dec 16 '09 at 6:10
Thanks for info @ibz, Yeah, Actually, If source is not well-formed, it will be difficult to parse for parsers too. – YOU Dec 16 '09 at 6:27
2  
three years later with bs4 this is a great solution, very flexible, especially if the source is not well formed – cedbeu Mar 19 at 9:40

Python has an interface to the expat xml parser.

xml.parsers.expat

It's a non-validating parser, so bad xml will not be caught. But if you know your file is correct, then this is pretty good, and you'll probably get the exact info you want and you can discard the rest on the fly.

stringofxml = """<foo>
    <bar>
        <type arg="value" />
        <type arg="value" />
        <type arg="value" />
    </bar>
    <bar>
        <type arg="value" />
    </bar>
</foo>"""
count = 0
def start(name, attr):
    global count
    if name == 'type':
        count += 1

p = expat.ParserCreate()
p.StartElementHandler = start
p.Parse(stringofxml)

print count # prints 4
share|improve this answer
+1 because I'm looking for a non-validating parser which will work with wierd source characters. Hopefully this will give me the results I want. – Nathan C. Tresch Mar 9 at 1:17

lxml.objectify is really simple.

Taking your sample text:

from lxml import objectify
from collections import defaultdict

count = defaultdict(int)

root = objectify.fromstring(text)

for item in root.bar.type:
    count[item.attrib.get("foobar")] += 1

print dict(count)

Output:

{'1': 1, '2': 1}
share|improve this answer

I'm still a Python newbie myself, but my impression is that ElementTree is the state-of-the-art in Python XML parsing and handling.

Mark Pilgrim has a good section on Parsing XML with ElementTree in his book Dive Into Python 3.

share|improve this answer

I find the Python xml.dom and xml.dom.minidom quite easy. Keep in mind that DOM isn't good for large amounts of XML, but if your input is fairly small then this will work fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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