我正在尝试使用parse.com作为我的django应用程序的数据库。我已经安装了parse_rest,并且正在尝试关注http://runnable.com/UrzUjbmPNzlOAAOw/using-parse-com-with-python-for-tutorial-beginner-nosql-parsepy-saas-cloud-and-feedparser。
我有一个字典列表,每个字典都有一个字典:
all_practices = {'a':value1, 'b':value2 ...}
我想将此保存到parse.com。我有:
from parse_rest.datatypes import Object
practices = Object()
for p in all_practices:
practices = p
practices.save()
这给了我:
'list' object has no attribute 'save'
我做错了什么?
答案 0 :(得分:2)
看起来你正在使用ParsePy。如果您不想为parse.com编写自己的包装器(我建议),请尝试调用"注册"第一。然后定义一个继承自Object
的python类from parse_rest.connection import register
register(<application_id>, <rest_api_key>)
from parse_rest.datatypes import Object
class Profile(Object):
pass
# instantiate with parameters
profile = Profile(name='Johnny', age=27)
# Change parameters
profile.name = "John"
profile.save()