How do I convert XML to nested objects. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T07:56:32Z http://stackoverflow.com/feeds/question/418497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/418497/how-do-i-convert-xml-to-nested-objects 2 How do I convert XML to nested objects. Stephen Belanger 2009-01-06T22:47:14Z 2009-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>&lt;main&gt; &lt;object1 attr="name"&gt;content&lt;/object&gt; &lt;/main&gt; </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#418534 1 Answer by Superdumbell for How do I convert XML to nested objects. Superdumbell 2009-01-06T23:00:31Z 2009-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#418587 0 Answer by Alan for How do I convert XML to nested objects. Alan 2009-01-06T23:18:48Z 2009-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#418720 0 Answer by bluce for How do I convert XML to nested objects. bluce 2009-01-07T00:09:03Z 2009-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#418728 3 Answer by Soviut for How do I convert XML to nested objects. Soviut 2009-01-07T00:15:27Z 2009-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 = """ &lt;main&gt; &lt;object attr="name"&gt;content&lt;/object&gt; &lt;/main&gt; """ 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#418823 0 Answer by JV for How do I convert XML to nested objects. JV 2009-01-07T01:06:09Z 2009-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="""&lt;main&gt; &lt;object name="somename"&gt; &lt;attr name="attr1"&gt;value1&lt;/attr&gt; &lt;attr name="attr2"&gt;value2&lt;/attr&gt; &lt;/object&gt; &lt;object name="someothername"&gt; &lt;attr name="attr1"&gt;value3&lt;/attr&gt; &lt;attr name="attr2"&gt;value4&lt;/attr&gt; &lt;/object&gt; &lt;/main&gt; """ </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#418854 3 Answer by Ryan Ginstrom for How do I convert XML to nested objects. Ryan Ginstrom 2009-01-07T01:21:22Z 2009-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 = "&lt;root&gt;&lt;nodes&gt;&lt;node&gt;node 1&lt;/node&gt;&lt;node&gt;node 2&lt;/node&gt;&lt;/nodes&gt;&lt;/root&gt;" 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#418860 0 Answer by kavoir.com for How do I convert XML to nested objects. kavoir.com 2009-01-07T01:23:21Z 2009-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#419232 4 Answer by Peter Hoffmann for How do I convert XML to nested objects. Peter Hoffmann 2009-01-07T04:51:26Z 2009-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>&gt;&gt;&gt; xml = """&lt;main&gt; ... &lt;object1 attr="name"&gt;content&lt;/object1&gt; ... &lt;object1 attr="foo"&gt;contenbar&lt;/object1&gt; ... &lt;test&gt;me&lt;/test&gt; ... &lt;/main&gt;""" &gt;&gt;&gt; from lxml import objectify &gt;&gt;&gt; main = objectify.fromstring(xml) &gt;&gt;&gt; main.object1[0] 'content' &gt;&gt;&gt; main.object1[1] 'contenbar' &gt;&gt;&gt; main.object1[0].get("attr") 'name' &gt;&gt;&gt; main.test 'me' </code></pre> <p>Or the other way around to build xml structures:</p> <pre><code>&gt;&gt;&gt; item = objectify.Element("item") &gt;&gt;&gt; item.title = "Best of python" &gt;&gt;&gt; item.price = 17.98 &gt;&gt;&gt; item.price.set("currency", "EUR") &gt;&gt;&gt; order = objectify.Element("order") &gt;&gt;&gt; order.append(item) &gt;&gt;&gt; order.item.quantity = 3 &gt;&gt;&gt; order.price = sum(item.price * item.quantity ... for item in order.item) &gt;&gt;&gt; import lxml.etree &gt;&gt;&gt; print lxml.etree.tostring(order, pretty_print=True) &lt;order&gt; &lt;item&gt; &lt;title&gt;Best of python&lt;/title&gt; &lt;price currency="EUR"&gt;17.98&lt;/price&gt; &lt;quantity&gt;3&lt;/quantity&gt; &lt;/item&gt; &lt;price&gt;53.94&lt;/price&gt; &lt;/order&gt; </code></pre>