up vote 3 down vote favorite
3
share [g+] share [fb]

I need to load an XML file and put the contents into an object-oriented sturcture somehow...basically take this;

<main>
    <object1 attr="name">content</object>
</main>

and turn it into something like this;

main
main.onject1 = "content"
main.onject1.attr = "name"

It'll have a somewhat more complicated structure than that in the end result, but basically, I need to just figure out a way to convert XML into nested objects.

I can't hardcode the element names, so I need to collect them at parse and use them somehow as the object names.

Anyone have any thoughts on what would be the best way to go about this?

link|improve this question

72% accept rate
feedback

8 Answers

up vote 6 down vote accepted

It's worth to have a look at http://codespeak.net/lxml/objectify.html

>>> xml = """<main>
... <object1 attr="name">content</object1>
... <object1 attr="foo">contenbar</object1>
... <test>me</test>
... </main>"""

>>> from lxml import objectify

>>> main = objectify.fromstring(xml)

>>> main.object1[0]
'content'

>>> main.object1[1]
'contenbar'

>>> main.object1[0].get("attr")
'name'

>>> main.test
'me'

Or the other way around to build xml structures:

>>> item = objectify.Element("item")

>>> item.title = "Best of python"

>>> item.price = 17.98

>>> item.price.set("currency", "EUR")

>>> order = objectify.Element("order")

>>> order.append(item)

>>> order.item.quantity = 3

>>> order.price = sum(item.price * item.quantity
... for item in order.item)

>>> import lxml.etree

>>> print lxml.etree.tostring(order, pretty_print=True)
<order>
  <item>
    <title>Best of python</title>
    <price currency="EUR">17.98</price>
    <quantity>3</quantity>
  </item>
  <price>53.94</price>
</order>
link|improve this answer
When I run your generation example using lxml version 2.2 beta1, my XML is full of type annotations ("<title py:pytype="str">..."). Is there a way to supress that? – Ryan Ginstrom Jan 7 '09 at 23:14
you can use lxml.etree.cleanup_namespaces(order) – Peter Hoffmann Jan 8 '09 at 12:03
You actually want to use both lxml.objectify.deannotate(order) and lxml.etree.cleanup_namespaces(order). – Paul McMillan Jan 27 '10 at 21:59
feedback

David Mertz's gnosis.xml.objectify would seem to do this for you. Documentation's a bit hard to come by, but there are a few IBM articles on it, including this one.

from gnosis.xml import objectify

xml = "<root><nodes><node>node 1</node><node>node 2</node></nodes></root>"
root = objectify.make_instance(xml)

print root.nodes.node[0].PCDATA # node 1
print root.nodes.node[1].PCDATA # node 2

Creating xml from objects in this way is a different matter, though.

link|improve this answer
That is EXACTLY what I was looking for. Now I can get back to coding the fun stuff! – Stephen Belanger Jan 7 '09 at 2:19
feedback

I've been recommending this more than once today, but try Beautiful Soup (easy_install BeautifulSoup).

from BeautifulSoup import BeautifulSoup

xml = """
<main>
    <object attr="name">content</object>
</main>
"""

soup = BeautifulSoup(xml)
# look in the main node for object's with attr=name, optionally look up attrs with regex
my_objects = soup.main.findAll("object", attrs={'attr':'name'})
for my_object in my_objects:
    # this will print a list of the contents of the tag
    print my_object.contents
    # if only text is inside the tag you can use this
    # print tag.string
link|improve this answer
the xml that you have quoted is not well formed - <object1 ....>.....</object> – JV. Jan 7 '09 at 0:22
+1 for beautiful soup - good stuff – Andrew Hare Jan 7 '09 at 1:23
main.findAll need to be soup.findAll, but that helped a bit. Still not exactly what I wanted--but I think I may have an idea of how to get it to work. It's going to be used in external py files that will be interpretted by the app, so I can probably just remap them before execution. – Stephen Belanger Jan 7 '09 at 1:31
I fixed the bugs in the code and updated the xml. I simply copied the original code giving the in the question. – Soviut Jan 7 '09 at 1:54
BeautifulSoup (BeutifulStoneSoup) breaks with empty tags <element />, e.g. <icon data="/ig/images/weather/partly_cloudy.gif"/> - and those are aplenty in xml :( – Nas Banov Jun 23 '10 at 22:53
feedback

How about this

http://evanjones.ca/software/simplexmlparse.html

link|improve this answer
feedback

If googling around for a code-generator doesn't work, you could write your own that uses XML as input and outputs objects in your language of choice.

It's not terribly difficult, however the three step process of Parse XML, Generate Code, Compile/Execute Script does making debugging a bit harder.

link|improve this answer
feedback

There are three common XML parsers for python: xml.dom.minidom, elementree, and BeautifulSoup.

IMO, BeautifulSoup is by far the best.

http://www.crummy.com/software/BeautifulSoup/

link|improve this answer
BeautifulSoup does not play well with XML - it has problem with empty tags <element/> - which is ok for HTML because those are not popular there – Nas Banov Jun 23 '10 at 22:55
feedback
#@Stephen: 
#"can't hardcode the element names, so I need to collect them 
#at parse and use them somehow as the object names."

#I don't think thats possible. Instead you can do this. 
#this will help you getting any object with a required name.

import BeautifulSoup


class Coll(object):
    """A class which can hold your Foo clas objects 
    and retrieve them easily when you want
    abstracting the storage and retrieval logic
    """
    def __init__(self):
        self.foos={}        

    def add(self, fooobj):
        self.foos[fooobj.name]=fooobj

    def get(self, name):
        return self.foos[name]

class Foo(object):
    """The required class
    """
    def __init__(self, name, attr1=None, attr2=None):
        self.name=name
        self.attr1=attr1
        self.attr2=attr2

s="""<main>
         <object name="somename">
             <attr name="attr1">value1</attr>
             <attr name="attr2">value2</attr>
         </object>
         <object name="someothername">
             <attr name="attr1">value3</attr>
             <attr name="attr2">value4</attr>
         </object>
     </main>
"""

#

soup=BeautifulSoup.BeautifulSoup(s)


bars=Coll()
for each in soup.findAll('object'):
    bar=Foo(each['name'])
    attrs=each.findAll('attr')
    for attr in attrs:
        setattr(bar, attr['name'], attr.renderContents())
    bars.add(bar)


#retrieve objects by name
print bars.get('somename').__dict__

print '\n\n', bars.get('someothername').__dict__

output

{'attr2': 'value2', 'name': u'somename', 'attr1': 'value1'}


{'attr2': 'value4', 'name': u'someothername', 'attr1': 'value3'}
link|improve this answer
feedback

Just to add my bits though it's not about python.

In PHP, to transform any XML string or file into a network of nested objects and access the values in the native OO way, is to use SimpleXML.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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