How do I convert XML to nested objects. - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T07:56:32Zhttp://stackoverflow.com/feeds/question/418497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects2How do I convert XML to nested objects.Stephen Belanger2009-01-06T22:47:14Z2009-01-07T05:16:01Z
<p>I need to load an XML file and put the contents into an object-oriented sturcture somehow...basically take this;</p>
<pre><code><main>
<object1 attr="name">content</object>
</main>
</code></pre>
<p>and turn it into something like this;</p>
<pre><code>main
main.onject1 = "content"
main.onject1.attr = "name"
</code></pre>
<p>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.</p>
<p>I can't hardcode the element names, so I need to collect them at parse and use them somehow as the object names.</p>
<p>Anyone have any thoughts on what would be the best way to go about this?</p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418534#4185341Answer by Superdumbell for How do I convert XML to nested objects.Superdumbell2009-01-06T23:00:31Z2009-01-06T23:00:31Z<p>How about this</p>
<p><a href="http://evanjones.ca/software/simplexmlparse.html" rel="nofollow">http://evanjones.ca/software/simplexmlparse.html</a></p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418587#4185870Answer by Alan for How do I convert XML to nested objects.Alan2009-01-06T23:18:48Z2009-01-06T23:18:48Z<p>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.</p>
<p>It's not terribly difficult, however the three step process of Parse XML, Generate Code, Compile/Execute Script does making debugging a bit harder.</p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418720#4187200Answer by bluce for How do I convert XML to nested objects.bluce2009-01-07T00:09:03Z2009-01-07T00:09:03Z<p>There are three common XML parsers for python: xml.dom.minidom, elementree, and BeautifulSoup.</p>
<p>IMO, BeautifulSoup is by far the best. </p>
<p><a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">http://www.crummy.com/software/BeautifulSoup/</a></p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418728#4187283Answer by Soviut for How do I convert XML to nested objects.Soviut2009-01-07T00:15:27Z2009-01-07T01:52:25Z<p>I've been recommending this more than once today, but try <a href="http://www.crummy.com/software/BeautifulSoup/" rel="nofollow">Beautiful Soup</a> (easy_install BeautifulSoup).</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418823#4188230Answer by JV for How do I convert XML to nested objects.JV2009-01-07T01:06:09Z2009-01-07T01:06:09Z<pre><code>#@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>
"""
</code></pre>
<p>#</p>
<pre><code>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__
</code></pre>
<p>output</p>
<pre><code>{'attr2': 'value2', 'name': u'somename', 'attr1': 'value1'}
{'attr2': 'value4', 'name': u'someothername', 'attr1': 'value3'}
</code></pre>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418854#4188543Answer by Ryan Ginstrom for How do I convert XML to nested objects.Ryan Ginstrom2009-01-07T01:21:22Z2009-01-07T01:21:22Z<p>David Mertz's <a href="http://www.xml.com/pub/a/2003/07/02/py-xml.html" rel="nofollow">gnosis.xml.objectify</a> 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 <a href="http://www.ibm.com/developerworks/xml/library/x-matters39.html" rel="nofollow">this one</a>.</p>
<pre><code>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
</code></pre>
<p>Creating xml from objects in this way is a different matter, though.</p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/418860#4188600Answer by kavoir.com for How do I convert XML to nested objects.kavoir.com2009-01-07T01:23:21Z2009-01-07T01:23:21Z<p>Just to add my bits though it's not about python.</p>
<p>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 <a href="http://www.php.net/simplexml" rel="nofollow">SimpleXML</a>.</p>
http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects/419232#4192324Answer by Peter Hoffmann for How do I convert XML to nested objects.Peter Hoffmann2009-01-07T04:51:26Z2009-01-07T05:16:01Z<p>It's worth to have a look at <a href="http://codespeak.net/lxml/objectify.html" rel="nofollow">http://codespeak.net/lxml/objectify.html</a> </p>
<pre><code>>>> 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'
</code></pre>
<p>Or the other way around to build xml structures:</p>
<pre><code>>>> 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>
</code></pre>