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):

import xmltodict

def convert_json_to_xml(input_str):
    dict = json.loads(input_str)
    return str(xmltodict.unparse({'root': dict}, pretty=True))