1. 程式人生 > >python高效能非同步框架 Tornado精簡教程

python高效能非同步框架 Tornado精簡教程

第一個demo:,這和其它框架幾乎一樣,所以不作解釋

import tornado.web
import tornado.ioloop
######################################################

class IndexHandler(tornado.web.RequestHandler):
def get(self):
self.write(('hello.wo00rld')) #定義請求函式
#########################################################

if __name__ == "__main__":
application = tornado.web.Application([

(r"/", IndexHandler
),


],debug=True)
#############################################################


application.listen(8888) #指定埠
tornado.ioloop.IOLoop.instance().start() #迴圈監聽
######################################################################