def GET(self, name): my_app.header('Content-type', 'text/plain') return "Hello %s!\n" % name
def GET(self): my_app.header('Content-type', 'text/plain') time.sleep(10) return "Welcome!\n"