i 一段时间以来一直使用 im。 我有兴趣提供非常基本的网络服务,以归还json数据。
I have a basic system working earlier today however after a reboot i now get the following error AssertionError: Import cycle in /home/prog/www/imdb/imdb.py.
the code is being ran using mod_python. which 100% works. the following lines seem to be the problem
#!/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
if i comment the import imdb test is printed.
任何帮助都将是巨大的。