xmltodict icon indicating copy to clipboard operation
xmltodict copied to clipboard

Python module that makes working with XML feel like you are working with JSON

Results 104 xmltodict issues
Sort by recently updated
recently updated
newest added

RSE102 Unnecessary parentheses on raised exception

https://docs.python.org/3/library/io.html#io.StringIO

E721 Do not compare types, use `isinstance()`

**⚠** f-strings were introduced in **Python 3.6**. Do you really want to keep Python 3.4 compatibility?

I ran the test suite and test couple of cases and it worked out of the box, worth to bump the python version as well :)

Hello everybody, i started some days ago to use xmltodict and i found it to be a great library. However i've not read anything about the possibility to extract the...

When I have the following xml ``` abc def ghi gkl mno ``` It parses into json format like this ``` { "w:document":{ "@xmlns:w":"http://www.example.com/wordproc", "w:body":{ "w:p":[ "abc", "ghi", "mno" ],...

for example this xml ```xml ``` let's parse it ```python import xmltodict xml = """ """ parsed_xml = xmltodict.parse(xml) print(repr(parsed_xml['parent']['element'])) ``` result: `'data'` expected result: `'data '` untangle library is...

Hi, I know it seems minor, but I am processing rather large XMLTV files => for example, 175,000 items in the list. So it can take a while - not...