Skip to main content

Convert XML to python Dict

Project description

pyxml2dict is an open source python library, which used for converting xml to python dict

pyxml2dict is licensed under the GPL-3.0

Prefix the attribute in the dictionary @attribute , the value corresponding to key is #text

Installing

Install with pip:

$pip install pyxml2dict

Usage

from pyxml2dict import XML2Dict

if __name__ == '__main__':
    xml_str1 = """<root id="1"><items><item>1</item><item>2</item></items></root>"""
    xml_str2 = """<root id="1"><age>20</age><items><item id="0">1</item><item>2</item></items></root>"""
    xml2dict = XML2Dict()
    print xml2dict.fromstring(xml_str1)
    print xml2dict.fromstring(xml_str2)

print result

{'root': {'items': {'item': ['1', '2']}, '@id': '1'}}

{'root': {'items': {'item': [{'#text': '1', '@id': '0'}, '2']}, 'age': '20', '@id': '1'}}

Thanks

In XML2Dict , _parse_node algorithm comes from https://github.com/undefine1995/xml2dict, It’s very useful. Thanks for undefine1994.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyxml2dict-1.0.1.zip (3.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page