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