SkillAgentSearch skills...

Json2xml

simplistic json -> xml converter

Install / Use

/learn @edsu/Json2xml
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

json2xml

A simplistic JSON to XML converter, created mainly as a way to kill time one evening after a tweet from @pbinkley. Yes, you are entitled to ask why I would ever want to convert JSON to XML. No, I'm not going to provide an answer :-)

Example

From the command line:

% ./json2xml.py tweet.json | xmllint --format - > tweet.xml

Or from your program:


from json2xml import json2xml

print json2xml("tweet.json", tag_name="tweet")

Or if you have a python data structure created by something like json.loads and you would like xml for it, get a TreeBuilder for it:


from json2xml import data2builder
from xml.etree.ElementTree import tostring

data = {"foo": "bar", "baz": [1, 2, 3]}
builder = data2builder(data, tag_name="data")
doc = builder.close()
print tostring(doc)

Related Skills

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated3y ago
Forks0

Languages

Python

Security Score

70/100

Audited on Aug 22, 2022

No findings