I\'m trying to get a web.py application running on GAE. I hoped that sth like the following might work
web.py
import web from google.appengine.ext.webapp.u
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()