XML to JSON online tool



فيXML to JSON online tool:

يمكن أن تساعدك أداة XML إلى JSON عبر الإنترنت في تحويل سلاسل البيانات بتنسيق XML إلى سلاسل بيانات بتنسيق JSON.

comic xml to json

المزيد من الروابط إلى XML إلى JSON:

جيثب: https://github.com/martinblech/xmltodict

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

تحويل إلى JSON مع Python XML (مع حزمة xmltodict):

import xmltodict


def convert_xml_to_json(input_str):
    dict = xmltodict.parse(input_str, process_namespaces=True)
    return json.dumps(dict, indent=4)