使用python清理/解析JSON

时间:2016-03-29 13:24:50

标签: python json parsing

任何人都可以帮助清理JSON以下

"1-Transaction Transfer Info Segment-F2":{
    "Selling Store Number":"01818",
    "Transaction Date":"2014-09-08",
    "Transaction Time":"05:45:49",
    "Transaction Service Type":"I",
    "IP Time Id":"118180546186"
}

我想清理这个json,如下所示

    1-Transaction Transfer Info Segment-F2 =>1_Transaction_Transfer_Info_Segment_F2
    Selling Store Number => Selling_Store_Number,
Transaction Service Type => Transaction_Servic_Type,
IP Time Id => IP_Time_Id

1 个答案:

答案 0 :(得分:0)

这不是有效的JSON - 用大括号{}

包围整个事物

为了将来参考,有许多在线JSON验证器/查看器可以快速告诉您是否使用有效的JSON。

仅举几例: