I'm trying to get a web.py application running on GAE. I hoped that sth like the following might work

import web
from google.appengine.ext.webapp.util import run_wsgi_app

[...]

def main():
    app = web.application(urls, globals())
    run_wsgi_app(app)

But obviously the app object doesn't conform with the run_wsgi_app function's expectations. The error msg says sth like app has no __call__ function, so I tried passing app.run instead, but that didn't work either.

How can I make the call to run_wsgi_app work?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Here a snippet of StackPrinter, a webpy app that runs on top of Google App Engine.

from google.appengine.ext.webapp.util import run_wsgi_app
import web
...
app = web.application(urls, globals())

def main():

    application = app.wsgifunc()
    run_wsgi_app(application)

if __name__ == '__main__':
    main()
link|improve this answer
1  
Cool, thanks a lot. – Johannes Charra Sep 8 '10 at 7:13
feedback

You don't need to import or use run_wsgi_app, web.py has a runcgi method that works perfectly!

if __name__  == '__main__':
    app.cgirun()
link|improve this answer
Why not just use app.run()? web.py should be able to figure out that it need to run the app as cgi. – Anand Chitipothu Nov 22 '10 at 17:33
Mostly because app.run() doesn't work. – xj9 Nov 22 '10 at 23:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.