Skip to content
Advertisement

How to convert an XML string to a dictionary?

I have a program that reads an XML document from a socket. I have the XML document stored in a string which I would like to convert directly to a Python dictionary, the same way it is done in Django’s simplejson library.

Take as an example:

JavaScript

Then dic_xml would look like {'person' : { 'name' : 'john', 'age' : 20 } }

Advertisement

Answer

This is a great module that someone created. I’ve used it several times. http://code.activestate.com/recipes/410469-xml-as-dictionary/

Here is the code from the website just in case the link goes bad.

JavaScript

Example usage:

JavaScript

//Or, if you want to use an XML string:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement