迴應我的other question現在需要找到一種方法將json壓縮到一行:用python鍛鍊json
{"node0":{
"node1":{
"attr0":"foo",
"attr1":"foo bar",
"attr2":"value with long spaces"
}
}}
想下來緊縮一行:
{"node0":{"node1":{"attr0":"foo","attr1":"foo bar","attr2":"value with long spaces"}}}
通過移除無關緊要的空間和保存是值之內的人。有沒有一個庫在Python中做到這一點?
編輯 謝謝drdaeman和Eli Courtwright的超快反應!
您正在使用的Python版本在這裏有些相關。自從我認爲json已經成爲標準庫的一部分2.6 – Triptych 2009-06-24 17:56:34
使用python 2.6,所以建議的解決方案對我很有幫助 – 2009-06-24 19:36:23