您好,是否可以使用 jq 提取格式错误的 json 文件中的字段
{
'_id': ObjectId('58049da30b78a4a11e3c9869'),
'name': 'joe bam',
'username': 'joe_bam',
'contact_info': {
'email': 'N/[email protected]'
},
'color': 'Blue',
'updated_at': datetime.datetime(2017, 5, 18, 11, 16, 19, 737000),
'created_at': datetime.datetime(2016, 10, 17, 9, 45, 7, 226000),
'token': '$2y$10$VMgv1S/NiGzkPsGhc4S.6eGFvEXv5YenlWQNdqUbVy4aGaeKOyxpi',
'views': 29,
'status_logged': True,
'provider': 'signup'
}
在这个例子中我想提取jq -r '[.name, .username, |contact_info .email] | @csv'
那可能吗 ??因为我已经验证了这个 json 并给了我错误
谢谢!
答案1
正如用户thanasisp所说在评论中,该文档很可能是 MongoDB 查询的输出,通过使用数据库引擎将其正确转换为 JSON 可以更好地解决该问题。
然而,yq
实用程序来自https://kislyuk.github.io/yq/(包裹着的 YAML 解析器jq
)能够(有点)按原样解析文档,就像它是 YAML 一样。
$ yq -r '[.name, .username, .contact_info.email] | @csv' file
"joe bam","joe_bam","N/[email protected]"
我说“有点”,因为如果你通过身份过滤器传递它,你会得到这样的混乱:
$ yq . file
{
"_id": "ObjectId('58049da30b78a4a11e3c9869')",
"name": "joe bam",
"username": "joe_bam",
"contact_info": {
"email": "N/[email protected]"
},
"color": "Blue",
"updated_at": "datetime.datetime(2017",
"5": null,
"18": null,
"11": null,
"16": null,
"19": null,
"737000)": null,
"created_at": "datetime.datetime(2016",
"10": null,
"17": null,
"9": null,
"45": null,
"7": null,
"226000)": null,
"token": "$2y$10$VMgv1S/NiGzkPsGhc4S.6eGFvEXv5YenlWQNdqUbVy4aGaeKOyxpi",
"views": 29,
"status_logged": true,
"provider": "signup"
}