Example #1
0
 def GET(self):
     my_simple_app.header('Content-type', 'text/plain')
     return "Welcome\n"
Example #2
0
 def GET(self):
     my_simple_app.header("Content-type", "text/plain")
     return "Welcome\n"
Example #3
0
 def GET(self, name):
     my_simple_app.header('Content-type', 'text/plain')
     return "Hello %s!\n" % name
Example #4
0
 def GET(self, name):
     my_simple_app.header("Content-type", "text/plain")
     return "Hello %s!\n" % name