im working on some basic python stuff within the google app engine and I was unable to figure out the correct way to structure my handlers.
- /main.py
- /project/handlers/__init__.py
- /project/handlers/AccountHandler.py
the AccountHandler is basically a class
class AccountHandler(webapp.RequestHandler):
when im using from project.handlers import AccountHandler python always give me a
TypeError: 'module' object is not callable
how do i have to name/import/structure my classes?
cheers, Martin