We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rivr can be used with app-engine
Here is a example hello world google app engine rivr view:
import rivr def view(request): return rivr.Response("Hello World") if __name__ == '__main__': from google.appengine.ext.webapp import util from rivr.wsgi import WSGIHandler util.run_wsgi_app(WSGIHandler(view))
import rivr
def view(request): return rivr.Response("Hello World")
if __name__ == '__main__': from google.appengine.ext.webapp import util from rivr.wsgi import WSGIHandler util.run_wsgi_app(WSGIHandler(view))
There was an error while loading. Please reload this page.