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

tornado 安装

时间:2014-09-21 22:13:51      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   art   on   c   ad   ef   

#pip  install  tornado
#cat  web.py
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.write(‘hello,world!‘)


class test(tornado.web.RequestHandler):
    def get(self):
        self.write(‘this is testing !‘)

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

])

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

#python   web.py

http://IP:8888/

tornado 安装

标签:http   io   ar   sp   art   on   c   ad   ef   

原文地址:http://my.oschina.net/jk409/blog/316729

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