JSON إلى أداة XML عبر الإنترنت



فيJSON إلى أداة XML عبر الإنترنت:

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

comic json to xml

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

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

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

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

import xmltodict

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