没有名为constants的模块

时间:2013-08-12 15:43:25

标签: python django tastypie

我想用Tastypie框架做示例应用程序。

我已根据需要将Tastypie添加到已安装的应用并修改了urls.py,并添加了from tastypie.api import Api。但是当我打开http://localhost:8000/api/v1/?format=json时,我得到以下异常:

  

异常值:没有名为常量的模块

当我跑步时:

pip install constants

一切看起来都不错。

Python 2.6 (and try on 2.7)
Django 1.4
Tastypie 0.10.0

2 个答案:

答案 0 :(得分:7)

问题出现在tastypie的resources.py文件中。它有以下几行:

from django.db.models.constants import LOOKUP_SEP

该导入仅适用于1.5+。对于django< 1.5,应该是:

from django.db.models.sql.constants import LOOKUP_SEP

升级到1.5肯定会修复它,但对于那些不能做到的人,可以暂时降级tastypie或自己解决这个问题。

答案 1 :(得分:0)

并非真正特定于 Tastypie 或 Python 2.7,但我在 Python 3.9 上看到了 nrfutil 相同的错误。

解决这个问题的方法是将 Python 降级到 3.8,在那里一切都像魅力一样。