Is there a simple 'wrapper' framework for appengine? Something like Sinatra or Juno? So that one can write code like the following:
from juno import *
@route('/')
def index(web):
return 'Juno says hi'
run()
UPDATE: I want to use the Python API (not Java) in GAE.