Python Tornado
按照http://www.tornadoweb.cn/所提供的方法下载安装后编写如下程序:
import tornado.ioloop import tornado.web class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, world") class TestHandler(tornado.web.RequestHandler): def get(self): self.write("Hello Evilxr,This is you‘s Python!") application = tornado.web.Application([ (r"/", MainHandler), (r"/test",TestHandler), ]) if __name__ == "__main__": application.listen(8888) tornado.ioloop.IOLoop.instance().start()
退出VI 后运行该脚本 root@IdeaPad:~/test# python one.py
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。