如何使用 json_normalize 规范化嵌套的 json
Posted
技术标签:
【中文标题】如何使用 json_normalize 规范化嵌套的 json【英文标题】:How to normalize a nested json with json_normalize 【发布时间】:2021-07-23 00:33:06 【问题描述】:我正在尝试从嵌套的 json 中创建一个 pandas 数据框。由于某种原因,我似乎无法解决第三级。
我的 json 看起来像这样:
"numberOfResults": 376,
"results": [
"name": "single",
"docs": [
"id": "RAKDI342342",
"type": "Culture",
"category": "Culture",
"media": "unknown",
"label": "exampellabel",
"title": "testtitle and titletest",
"subtitle": "Archive"
]
,
"id": "GUI6N5QHBPTO6GJ66VP5OXB7GKX6J7ER",
"type": "Culture",
"category": "Culture",
"media": "image",
"label": "more label als example",
"title": "test the second title",
"subtitle": "picture"
等等。
“文档”部分是所有实际结果,以“id”开头。一旦所有信息都在那里,下一个以“id”开头的块就紧随其后。
现在我正在尝试为每个单独的块(在本例中为实际项目)创建一个包含键 id、标签和标题(作为开始)的表。
定义 search_url(我从中获取 json 的位置)后,我的代码目前如下所示:
result = requests.get(search_url)
data = result.json()
data.keys()
有了这个,我被告知他们的 dict_keys 如下:
dict_keys(['numberOfResults', 'results', 'facets', 'entities', 'fulltexts', 'correctedQuery', 'highlightedTerms', 'randomSeed', 'nextCursorMark'])
鉴于上面的 json,我知道我想查看“结果”,然后进一步查看“文档”。根据我找到的文档,我应该能够通过直接寻址结果部分然后通过用“。”分隔字段来寻址嵌套位来实现这一点。 我现在已经尝试了以下代码:
fields = ["docs.id", "docs.label", "docs.title"]
df = pd.json_normalize(data["results"])
df[fields]
这一直有效,直到 df[field] - 在这个阶段程序告诉我:
KeyError: "['docs.id'] not in index"
它确实适用于上述级别,所以如果我尝试对“名称”和“文档”进行相同操作,我会得到一个可爱的数据框。我究竟做错了什么?我仍然是 python 和 pandas 的初学者,非常感谢任何帮助!
编辑:
所需的数据帧输出大致如下所示:
id label title
0 RAKDI342342 exampellabel testtitle and titletest
【问题讨论】:
这太棒了,非常感谢!我现在才开始尝试,效果很好! 【参考方案1】: 使用pandas.json_normalize()
以下代码使用pandas v.1.2.4
如果您不想要其他列,请删除分配给meta
的keys
列表
使用pandas.DataFrame.drop
从df
中删除任何其他不需要的列。
import pandas as pd
df = pd.json_normalize(data, record_path=['results', 'docs'], meta=[['results', 'name'], 'numberOfResults'])
display(df)
id type category media label title subtitle results.name numberOfResults
0 RAKDI342342 Culture Culture unknown exampellabel testtitle and titletest Archive single 376
1 GUI6N5QHBPTO6GJ66VP5OXB7GKX6J7ER Culture Culture image more label als example test the second title picture single 376
数据
发布的 JSON / Dict 格式不正确 假设以下更正形式data = \
'numberOfResults': 376,
'results': ['docs': ['category': 'Culture',
'id': 'RAKDI342342',
'label': 'exampellabel',
'media': 'unknown',
'subtitle': 'Archive',
'title': 'testtitle and titletest',
'type': 'Culture',
'category': 'Culture',
'id': 'GUI6N5QHBPTO6GJ66VP5OXB7GKX6J7ER',
'label': 'more label als example',
'media': 'image',
'subtitle': 'picture',
'title': 'test the second title',
'type': 'Culture'],
'name': 'single']
【讨论】:
以上是关于如何使用 json_normalize 规范化嵌套的 json的主要内容,如果未能解决你的问题,请参考以下文章
使用 pandas json_normalize 扁平化包含多个嵌套列表的字典列表
Pandas json_normalize 不会展平所有嵌套字段