在python中解析嵌套的JSON?

时间:2015-06-20 17:06:24

标签: python json parsing dataframe

我有以下格式的JSON文件

{
  "_id": {
    "$oid": "5458c00ceb23024b941be4bb"
  },
  "gpstime": 0.046575,
  "gpslat": 12.94492917,
  "readingtime": {
    "$date": "2014-11-04T17:28:10.000+0000"
  },
  "gpslong": 77.56115458,
  "deviceid": "11119828",
  "time": "Tue Nov  4 12:01:16 2014",
  "location": [
    12.94492917,
    77.56115458
  ]
}                                                                                                         

我使用以下代码来解析它,但直到错过了日期

import json
import csv
import pandas as pa

with open('readings.json', 'rb') as f:
    data = f.readlines()

data = map(lambda x: x.rstrip(), data)
data_json_str = "[" + ','.join(data) + "]"
data_df = pa.read_json(data_json_str)  

我的阅读时间栏如下

readingtime  {u'$date': u'2014-11-04T17:27:50.000+0000'}                                                                 

但是%date在阅读时错过了如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

正确读取time字段,它正确获取自己的列:

>>> print data_df.time
0    Tue Nov  4 12:01:16 2014
Name: time, dtype: object

请注意,$datetime字段 intepreted ,它们只是作为字符串加载。