我試圖獲得在GAE上運行的web.py
應用程序。我希望,像下面的某事可能工作Google App Engine上的web.py
import web
from google.appengine.ext.webapp.util import run_wsgi_app
[...]
def main():
app = web.application(urls, globals())
run_wsgi_app(app)
但顯然app
對象不與run_wsgi_app
功能的預期一致。該錯誤味精說像app has no __call__ function
,所以我試着通過app.run
,但也沒有工作。
我該如何撥打run_wsgi_app
工作?
很酷,非常感謝。 – 2010-09-08 07:13:25