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

hello world

时间:2016-07-31 09:05:56      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

开发环境:

$ pip install tornado

 

简单的示例程序:

 1 import tornado.ioloop
 2 import tornado.web
 3 
 4 class MainHandler(tornado.web.RequestHandler):
 5     def get(self):
 6         self.write(Hello World)
 7 
 8 
 9 def make_app():
10     return tornado.web.Application([
11         (r/, MainHandler),
12     ])        
13 
14 
15 if __name__ == __main__:
16         app = make_app()
17         app.listen(8888)
18         tornado.ioloop.IOLoop.current().start()    

 

hello world

标签:

原文地址:http://www.cnblogs.com/jcsz/p/5722336.html

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