Strumento online da JSON a XML



suStrumento online da JSON a XML:

Questo strumento online da JSON a XML può aiutarti a convertire stringhe di dati in formato JSON in stringhe di dati in formato XML.

comic json to xml

Altri collegamenti a JSON in XML:

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

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

Converti in XML con Python JSON (con pacchetto xmltodict):

import xmltodict

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