【发布时间】:2017-03-21 12:39:54
【问题描述】:
如何将下面的json格式转换为下面的目标格式?我有 50,000 个条目。
基本上,从每个数组中获取唯一的国家,并在一个数组下包含具有相同国家名称的所有其他国家。
原始json:
[
{
"unilist": [
{
"country": "United States",
"name": "The College of New Jersey",
"web_page": "http://www.tcnj.edu"
},
{
"country": "United States",
"name": "Abilene Christian University",
"web_page": "http://www.acu.edu/"
},
{
"country": "United States",
"name": "Adelphi University",
"web_page": "http://www.adelphi.edu/"
},
{
"country": "China",
"name": "Harbin Medical University",
"web_page": "http://www.hrbmu.edu.cn/"
},
{
"country": "China",
"name": "Harbin Normal University",
"web_page": "http://www.hrbnu.edu.cn/"
}
...
]
}
]
目标格式:
{
"unilist" : {
"United States" : [
{"name" : "The College of New Jersey", "web_page" : "http://www.tcnj.edu"},
{"name" : "Abilene Christian University", "web_page" : "http://www.acu.edu/"},
{"name" : "Adelphi University", "web_page" : "http://www.adelphi.edu/"}
],
"China" : [
{"name" : "Harbin Medical University", "web_page" : "http://www.hrbnu.edu.cn/"}
],
...
}
}
更新
我的尝试(在 Python 2.7.11 中)基于 answer provided by downshift,但是它没有按预期工作,我收到以下 typeError:
from collections import defaultdict
import json
from pprint import pprint
with open('old_list.json') as orig_json:
newlist = defaultdict(list)
for country in orig_json[0]['unilist']:
newlist[country['country']].append({'name': country['name'], 'web_page': country['web_page']})
with open('new_list.json', 'w') as fp:
json.dump(newlist,fp)
pprint.pprint(dict(newlist))
类型错误:
Traceback (most recent call last):
File "convert.py", line 8, in <module>
for country in orig_json[0]['unilist']:
TypeError: 'file' object has no attribute '__getitem__'
【问题讨论】: