我在谷歌应用引擎中处理一些基本的 python 东西,但我无法找出构建处理程序的正确方法。
- /main.py
- /project/handlers/__init__.py
- /project/handlers/AccountHandler.py
AccountHandler 基本上是一个类
class AccountHandler(webapp.RequestHandler):
当我使用 from project.handlers import AccountHandler python 总是给我一个
TypeError:“模块”对象不可调用
我如何命名/导入/构建我的课程?
干杯,马丁