【发布时间】:2011-12-29 22:08:33
【问题描述】:
我使用 imdbpy 已经有一段时间了。我有兴趣制作一个非常基本的 Web 服务来返回 json 数据。
我今天早些时候有一个基本系统工作,但是重新启动后我现在收到以下错误 AssertionError:/home/prog/www/imdb/imdb.py 中的导入周期。
代码正在使用 mod_python 运行。 100%有效。 以下几行似乎是问题
#!/usr/bin/env python
import imdb
from mod_python import apache
def handler(req):
req.content_type = "text/plain"
req.write("test")
return apache.OK
如果我评论导入 imdb 测试将被打印。
任何帮助都会很棒
【问题讨论】:
标签: python web-services mod-python imdb