- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我如何将这个字典列表排序和分组到一个嵌套字典中,我想通过 API 作为 JSON 返回它。
源数据(权限列表):
[{
'can_create': True,
'can_read': True,
'module_name': 'ModuleOne',
'module_id': 1,
'role_id': 1,
'end_point_id': 1,
'can_update': True,
'end_point_name': 'entity',
'can_delete': True,
}, {
'can_create': True,
'can_read': True,
'module_name': 'ModuleTwo',
'module_id': 2,
'role_id': 1,
'end_point_id': 4,
'can_update': True,
'end_point_name': 'financial-outlay',
'can_delete': True,
},{
'can_create': True,
'can_read': True,
'module_name': 'ModuleOne',
'module_id': 1,
'role_id': 1,
'end_point_id': 2,
'can_update': True,
'end_point_name': 'management-type',
'can_delete': True,
}, {
'can_create': True,
'can_read': True,
'module_name': 'ModuleOne',
'module_id': 1,
'role_id': 1,
'end_point_id': 3,
'can_update': True,
'end_point_name': 'ownership-type',
'can_delete': False,
}, {
'can_create': True,
'can_read': True,
'module_name': 'ModuleTwo',
'module_id': 2,
'role_id': 1,
'end_point_id': 5,
'can_update': True,
'end_point_name': 'exposure',
'can_delete': True,
}]
我想将其转换为嵌套的字典对象,以便通过 API 作为 JSON 返回。这是预期的输出:
{
"role_id": 1,
"modules": [{
"module_id": 1,
"module_name": "ModuleOne",
"permissions": [{
"end_point_id": 1,
"end_point_name": "entity",
"can_create": False,
"can_read": True,
"can_write": True,
"can_delete": True
}, {
"end_point_id": 2,
"end_point_name": "management-type",
"can_create": False,
"can_read": True,
"can_write": True,
"can_delete": True
}, {
"end_point_id": 3,
"end_point_name": "ownership-type",
"can_create": False,
"can_read": True,
"can_write": True,
"can_delete": True
}, ]
}, {
"module_id": 2,
"module_name": "ModuleTwo",
"permissions": [{
"end_point_id": 4,
"end_point_name": "financial-outlay",
"can_create": False,
"can_read": True,
"can_write": True,
"can_delete": True
}, {
"end_point_id": 5,
"end_point_name": "exposure",
"can_create": False,
"can_read": True,
"can_write": True,
"can_delete": True
}, ]
},
]
}
它看起来微不足道,直到我花了更多的时间来尝试绕过它。我尝试了很多选择,但没有一个起作用。这是最后一次尝试。
# Get user role
user_roles = get_user_roles() # List of roles e.g. [{'role_id':1, role_name: 'role_one'}, {'role_id':2, role_name: 'role_two'}]
for role in user_roles:
role_id = role['role_id']
role_name = role['role_name']
# Fetch Role Permissions
role_permissions = get_role_permissions(role_id) # List of permissions as seen above
sorted_role_permissions = sorted(role_permissions, key=itemgetter('module_id')) # sort dictionaries in list by 'module_id'
modules_list = []
permissions_list = []
previous_module_id = 0
is_first_loop = True
for role_permission in sorted_role_permissions:
module_id = role_permission['module_id']
module_name = role_permission['module_name']
end_point_id = role_permission['end_point_id']
end_point_name = role_permission['end_point_name']
if is_first_loop:
print(0)
is_first_loop = False
previous_module_id = module_id
print('end_point_name 0 {}'.format(end_point_name))
permissions = {'end_point_id': end_point_id, 'end_point_name': end_point_name,
'can_create': role_permission['can_create'],
'can_read': role_permission['can_read'],
'can_update': role_permission['can_update'],
'can_delete': role_permission['can_delete']
}
permissions_list.append(permissions)
if len(sorted_role_permissions) == 1:
# If there is only one permission in the role, end the loop
modules_dict = {'module_id': module_id, 'module_name': module_name,
'permissions': permissions_list}
modules_list.append(modules_dict)
break
else:
if module_id == previous_module_id:
# As long as the current module_id and the previous_module_id are the same, add to the same list
print(1)
permissions = {'end_point_id': end_point_id, 'end_point_name': end_point_name,
'can_create': role_permission['can_create'],
'can_read': role_permission['can_read'],
'can_update': role_permission['can_update'],
'can_delete': role_permission['can_delete']
}
permissions_list.append(permissions)
else:
print(2)
modules_dict = {'module_id': module_id, 'module_name': module_name,
'permissions': permissions_list}
modules_list.append(modules_dict)
permissions_list = []
permissions = {'end_point_id': end_point_id, 'end_point_name': end_point_name,
'can_create': role_permission['can_create'],
'can_read': role_permission['can_read'],
'can_update': role_permission['can_update'],
'can_delete': role_permission['can_delete']
}
permissions_list.append(permissions)
previous_module_id = module_id
if modules_list:
roles.append({'role_id': role_id, 'role_name': role_name, 'modules': modules_list})
最佳答案
多田!
from itertools import groupby
def group_by_remove(permissions, id_key, groups_key, name_key=None):
"""
@type permissions: C{list} of C{dict} of C{str} to C{object}
@param id_key: A string that represents the name of the id key, like "role_id" or "module_id"
@param groups_key: A string that represents the name of the key of the groups like "modules" or "permissions"
@param name_key: A string that represents the name of the key of names like "module_name" (can also be None for no names' key)
"""
result = []
permissions_key = lambda permission: permission[id_key]
# Must sort for groupby to work properly
sorted_permissions = sorted(permissions, key=permissions_key)
for key, groups in groupby(sorted_permissions, permissions_key):
key_result = {}
groups = list(groups)
key_result[id_key] = key
if name_key is not None:
key_result[name_key] = groups[0][name_key]
key_result[groups_key] = [{k: v for k, v in group.iteritems() if k != id_key and (name_key is None or k != name_key)} for group in groups]
result.append(key_result)
return result
def change_format(initial):
"""
@type initial: C{list}
@rtype: C{dict} of C{str} to C{list} of C{dict} of C{str} to C{object}
"""
roles_group = group_by_remove(initial, "role_id", "modules")[0]
roles_group["modules"] = group_by_remove(roles_group["modules"], "module_id", "permissions", "module_name")
return roles_group
change_format(role_permissions)
享受 :)
关于python - 对词典列表进行排序和分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39989777/
我正在尝试这样做: var myBeacons: [NSUUID: [Int]] = [NSUUID(UUIDString:"74278BDA-B644-4520-8F0C-720EAF059935"
我的字典有问题。如果我将一个对象添加到字典中,它会用添加的项目覆盖整个包含项目。 添加所有元素后,Dictionary 包含正确数量的项目,但项目都是最后添加的项目。 For Each shp In
我使用字典,我将有大约一百万个条目,我将定期添加、删除、编辑和轮询..我想知道所有条目的上/下边是什么,如果有一种更高效的方式。 最佳答案 这取决于你想做什么。如果您想要一个具有快速插入、查找和删除功
我在 Swift 类中的字典数组方面遇到问题。我的代码无法在类或结构中运行,但可以在外部运行。 var data = [Dictionary]() data.append([123: "test"])
有没有一种方法可以添加注释来记录 Dictionary 或 ConcurrentDictionary 以了解键/值的含义? 例如: Dictionary _users; 这个例子有一个用户字典。 gu
我正在基于 Android AOSP LatinIME 项目创建自己的输入法应用。我设法找到了一些用于自动更正和预测的字典文件(main_en.dict、main_fr.dict 等)。 但对于许多其
我已经通过 Locale::Maketext 使我的网站支持多种语言(或更具体地说是 CatalystX::I18N::Model::Maketext )。 我的 maketext 类在编译时通过从数
我不会说英语,而且我的英语也不是很好。我自以为是。我没有和其他人一起在一个共同的代码库上工作过。我没有任何编程的 friend 。我不与其他程序员一起工作(至少没有人关心这些事情)。 我想这可能解释了
我需要做 currentKey+1。所以我想找到键值的索引并获取下一个键(如果在末尾则为第一个)。我如何找到 key 的当前索引? 我正在使用 Dictionary我用 Linq 查找 .Find 或
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 9 年前。 Improve t
我使用 python 2.7 中的 shelve 模块保存了一个数据文件,该文件不知何故已损坏。我可以用 db = shelve.open('file.db') 加载它,但是当我调用 len(db)
我想试试这个抽认卡的想法,为即将到来的测试尝试学习关键字及其含义。我想在 python 上创建一个字典,我可以用它来帮助解决这个问题。这个想法是向我显示定义,然后我必须猜测已定义的词。我在下面展示了如
当尝试 .format() 一次列表中的多个词典时,控制台会给我一个 AttributeError:'list' object has no attribute 'items'。 我尝试滚动浏览提示的
我在公共(public)类(class)中有一个公共(public)词典如下: namespace ApiAssembly { public static class TypeStore
我需要做 currentKey+1。所以我想找到键值的索引并获取下一个键(如果在末尾则为第一个)。我如何找到 key 的当前索引? 我正在使用 Dictionary我用 Linq 查找 .Find 或
我的字典总是零,想了解为什么会这样。我的代码: var dic = [NSDate : MCACalendar]?() dic?[currentDate!] = calendar 最佳答案 @Kirs
给定(简化描述) 我们的一项服务在内存中有很多实例。大约 85% 是独一无二的。我们需要对这些项目进行非常快速的基于键的访问,因为它们在单个堆栈/调用中被非常频繁查询。这个单一上下文的性能得到了极大的
我想为“Sinhala Language speech recognition”僧伽罗语建立新的声学模型、新词典、新语言模型字符是基于 Unicode 的。例如 A=අ,I=ඉ,U=උ,KA=ක,BA
我需要一个带有 的正面和负面词的列表重量 根据单词的强度和周数分配单词。我有 : 1.) WordNet - 它为每个单词提供 + 或 - 分数。 2.) SentiWordNet - 在 [0,1]
我有一个 Jinja2 字典,我想要一个可以修改它的表达式 - 通过更改其内容或与另一个字典合并。 >>> import jinja2 >>> e = jinja2.Environment() 修改字
我是一名优秀的程序员,十分优秀!