We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a dict that I converted using xml = dict2xml(a) and what I got back is
xml = dict2xml(a)
<Body>B</Body> <Footer>F</Footer> <Title>T</Title>
when a is
a = {'Title': 'T', 'Body': 'B', 'Footer': 'F'}
So it is out of order and not a full xml document with root and header
The text was updated successfully, but these errors were encountered:
{"Title": "T", "Body": "B", "Footer": "F"}
may be converted to xml
<?xml version="1.0" encoding="UTF-8"?> <root> <Title>T</Title> <Body>B</Body> <Footer>F</Footer> </root>
Sorry, something went wrong.
No branches or pull requests
I have a dict that I converted using
xml = dict2xml(a)
and what I got back iswhen a is
a = {'Title': 'T', 'Body': 'B', 'Footer': 'F'}
So it is out of order and not a full xml document with root and header
The text was updated successfully, but these errors were encountered: