私は多くのjson文字列をmysqlデータベースから取得します。多くのjsonファイルを1つに接続する
{
"type": "device",
"name": "Lampe",
"controls": [
{
"type": "switch",
"name": "Betrieb",
"topic": "/lampe/schalter"
}
]
}
の組み合わせで、このデバイスは、私が
は、誰かをするのpythonでこれを行う方法を理解していない
{
"name": "Test-System",
"devices": [
{
"type": "device",
"name": "Lampe",
"controls": [
{
"type": "switch",
"name": "Betrieb",
"topic": "/lampe/schalter"
}
]
},
{
other Device
}
]
}
JSONファイルの配列に取得する必要があります。たとえば
どのようにそれを行うアイデアを持っている?