コード例 #1
0
ファイル: code.py プロジェクト: ahjdzx/python_work
 def GET(self, name):
     my_app.header('Content-type', 'text/plain')
     return "Hello %s!\n" % name
コード例 #2
0
ファイル: code.py プロジェクト: ahjdzx/python_work
 def GET(self):
     my_app.header('Content-type', 'text/plain')
     time.sleep(10)
     return "Welcome!\n"