Popular recipes by Lucas Oliveira http://code.activestate.com/recipes/users/4185629/2013-03-14T18:50:07-07:00ActiveState Code RecipesReading XML into dict-like object (Python)
2013-03-14T18:50:07-07:00Lucas Oliveirahttp://code.activestate.com/recipes/users/4185629/http://code.activestate.com/recipes/578492-reading-xml-into-dict-like-object/
<p style="color: grey">
Python
recipe 578492
by <a href="/recipes/users/4185629/">Lucas Oliveira</a>
(<a href="/recipes/tags/attributes/">attributes</a>, <a href="/recipes/tags/dict/">dict</a>, <a href="/recipes/tags/xml/">xml</a>).
Revision 4.
</p>
<ul>
<li>Load XML, tree or root</li>
<li>Make its children available through __getitem__</li>
<li>Make its attributes available through __getattr__</li>
<li>If child is requested, return an instance created with child as new root</li>
<li>Make its text accessible through __getattr__, using attribute "text"</li>
</ul>