JSON转XML在线工具
关于JSON转XML在线工具:
这个JSON转XML在线工具可以帮助您把JSON格式的数据字符串转换成XML格式的数据字符串.
更多关于JSON转XML的链接:
Github: https://github.com/martinblech/xmltodict
xmltodict: http://docs.python-guide.org/en/latest/scenarios/xml/
用Python JSON转XML (用 package xmltodict):
import xmltodict def convert_json_to_xml(input_str): dict = json.loads(input_str) return str(xmltodict.unparse({'root': dict}, pretty=True))