Convert XML to python Dict
Project description
pyxml2dict
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)
#if you want namespace to be removed then:
xml_str3 = """<root id="1" xmlns="somenamespace"><items><item>1</item><item>2</item></items></root>"""
print xml2dict.fromstring(xml_str3)
print xml2dict.fromstring(xml_str3, remove_namespace=True)
print result
{'root': {'items': {'item': ['1', '2']}, '@id': '1'}}
{'root': {'items': {'item': [{'#text': '1', '@id': '0'}, '2']}, 'age': '20', '@id': '1'}}
{'{somenamespace}root': {'@id': '1', '{somenamespace}items': {'{somenamespace}item': ['1', '2']}}}
{'root': {'items': {'item': ['1', '2']}, '@id': '1'}}
Thanks
In XML2Dict , _parse_node algorithm comes from https://github.com/undefine1995/xml2dict, It's very useful. Thanks for undefine1994.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyxml2dict-1.0.3.tar.gz.
File metadata
- Download URL: pyxml2dict-1.0.3.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e63bd843e81bd7c2bcf6e5f964af9362839cceb82ad298508bdfeca82c581376
|
|
| MD5 |
c4562bef6d07f065cf399ba781f48d8e
|
|
| BLAKE2b-256 |
fa970ca63ebe3de229bb87e0b167d511002abe449eb16badcbb3ba045ade6733
|
File details
Details for the file pyxml2dict-1.0.3-py3-none-any.whl.
File metadata
- Download URL: pyxml2dict-1.0.3-py3-none-any.whl
- Upload date:
- Size: 15.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1862525ebde900b6c6c699213dbc3c7d171d08744f0e73a7c91a6ae1b4670c31
|
|
| MD5 |
a561ef14ff70620c595cb2db3e32037d
|
|
| BLAKE2b-256 |
960dbd87278cf6fb2f406e62bd092fbdeca5e5b8c2399cb218d6f274868f1de0
|