我正在尝试使用parse.com作为我的django应用程序的数据库。我已经安装了parse_rest。
我有一个字典列表,每个字典都有一个字典:
all_practices = {'a':value1, 'b':value2 ...}
根据Michael Otte在Add and save objects to parse.com db from django
中提供的答案我可以通过以下方式保存此对象:
from parse_rest.datatypes import Object
class Profile(Object):
pass
# instantiate with parameters
profile = Profile(name='Johnny', age=27)
有没有办法直接传递字典对象作为配置文件对象的参数,以便得到:
profile = Profile(a='value1', b='value2')
答案 0 :(得分:6)
是的,请使用keyword/dictionary unpacking operator **
:
profile = Profile(**all_practices)