如何修复web.py服务中没有名为modules.BigQueryHandler的模块错误?

时间:2015-10-30 06:07:22

标签: python web.py

我使用Python开发了一个Web服务。项目结构如下:

enter image description here

它在本地计算机上运行完美,但当我部署到服务器并尝试运行LogicImplementer.py时,它会返回错误:

  

没有名为modules.BigQueryHandler

的模块

以下是LogicImplementer

的代码
import sys
sys.path.append("...")
import modules.BigQueryHandler as BQ
import scripts.DigINCacheEngine.CacheController as CC
import web

我已将__init__.py添加到导入的每个目录中。

0 个答案:

没有答案