将REDIS与Tastypie一起使用

时间:2016-01-20 08:49:09

标签: django redis tastypie

我需要为用户登录创建REST API。如果成功,它应返回将存储在REDIS服务器中的Secret值。我该怎么做呢?

我可以使用tastypie-redis-resource 0.0.9执行此操作吗? https://pypi.python.org/pypi/tastypie-redis-resource

如果是这样,你能告诉我我需要什么。

1 个答案:

答案 0 :(得分:2)

以下是相关来源:https://github.com/tunix/tastypie-redis-resource/blob/master/tastypie_redis/resources.py

你可能想要这样的东西:

def obj_create(self, bundle, **kwargs):
    kwargs['secret_field'] = get_new_secret_value()
    return super(MyResource, self).obj_create(bundle, **kwargs)