2023年7月6日木曜日

Python で dict to xml する方法

Python で dict to xml する方法

概要

json2xml を使うと簡単です

環境

  • macOS 13.4
  • Python 3.11.3
    • json2xml 3.21.0

サンプルコード

from json2xml import json2xml
from json2xml.utils import readfromurl

data = readfromurl("https://request-dumper.kakakikikeke.com")
j2x = json2xml.Json2xml(data, wrapper="hoge")
print(j2x.data)  # dict を出力
print(j2x.to_xml())  # xml (str) を出力

data には dict を渡せばいいので dict to xml とも言えます

0 件のコメント:

コメントを投稿