JSON转XML在线工具



关于JSON转XML在线工具:

这个JSON转XML在线工具可以帮助您把JSON格式的数据字符串转换成XML格式的数据字符串.

comic json to xml

更多关于JSON转XML的链接:

Github: https://github.com/martinblech/xmltodict

xmltodict: http://docs.python-guide.org/en/latest/scenarios/xml/

用Python JSON转XML (用 package xmltodict):

  1. import xmltodict
  2.  
  3. def convert_json_to_xml(input_str):
  4. dict = json.loads(input_str)
  5. return str(xmltodict.unparse({'root': dict}, pretty=True))