XML轉JSON在線工具
關於XML轉JSON在線工具:
這個XML轉JSON在線工具可以幫助您把XML格式的數據字符串轉換成JSON格式的數據字符串.
更多關於XML轉JSON的鏈接:
Github: https://github.com/martinblech/xmltodict
xmltodict: http://docs.python-guide.org/en/latest/scenarios/xml/
用Python XML轉JSON (用package xmltodict):
import xmltodict def convert_xml_to_json(input_str): dict = xmltodict.parse(input_str, process_namespaces=True) return json.dumps(dict, indent=4)