码迷,mamicode.com
首页 > 其他好文 > 详细

tornado

时间:2017-11-30 19:16:21      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:instance   handler   loop   cal   hand   star   hello   imp   import   

import tornado.ioloop
import tornado.web

class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.write("Hello, world")

application = tornado.web.Application([
    (r"/", MainHandler),
])

if __name__ == "__main__":
    application.listen(8888)
    tornado.ioloop.IOLoop.instance().start()

浏览器输入

 localhost:8888 

tornado

标签:instance   handler   loop   cal   hand   star   hello   imp   import   

原文地址:http://www.cnblogs.com/koushuige/p/7930419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!