Merge pull request #673 from rcatajar/patch-1

Fix varibable name in XML parsing scenario
This commit is contained in:
2016-01-29 20:57:57 -05:00
+1 -1
View File
@@ -59,7 +59,7 @@ can be loaded into a Python dict like this:
import xmltodict
with open('path/to/file.xml') as fd:
obj = xmltodict.parse(fd.read())
doc = xmltodict.parse(fd.read())
and then you can access elements, attributes and values like this: