从django添加对象并将其保存到parse.com数据库

时间:2014-07-23 02:34:44

标签: python django parse-platform

我正在尝试使用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'

我做错了什么?

1 个答案:

答案 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()