JSON to XMLオンラインツール
についてJSON to XMLオンラインツール:
このJSON to XMLオンラインツールは、JSON形式のデータ文字列をXML形式のデータ文字列に変換するのに役立ちます。
JSON to XMLへのその他のリンク:
Github: https://github.com/martinblech/xmltodict
Xmltodict: http://docs.python-guide.org/en/latest/scenarios/xml/
Python JSONを使用してXMLに変換する(xmltodictパッケージを使用):
import xmltodict def convert_json_to_xml(input_str): dict = json.loads(input_str) return str(xmltodict.unparse({'root': dict}, pretty=True))