Tornado 编程首次接触及实践

Tornado是一种Web服务器软件,与主流的Web服务器框架的明显区别是:Tornado是非阻塞式服务器,而且速度相当快,可以快速处理众多的连接请求。

首先安装Tornado。在Linux系统中可以使用pip安装也可以从github上clone之后进行安装:

git clone https://github.com/tornadoweb/tornado.git
cd tornado/
python setup.py  build
python setup.py  install

而Tornado在windows系统中的安装相对较麻烦,可以通过ActivePython的PyPm包管理器进行安装。

首先看看简单的例子:

import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web

from tornado.options import define,options
define("port",default=8000,help="run on the given port",type=int)

class IndexHandler(tornado.web.RequestHandler):
    def get(self):
        greeting=self.get_argument("greeting","hello")
        self.write(greeting+",friendly user!")

if __name__ == '__main__':
    tornado.options.parse_command_line()
    app=tornado.web.Application(handlers=[(r"/",IndexHandler)])
    http_server=tornado.httpserver.HTTPServer(app)
    http_server.listen(options.port)
    tornado.ioloop.IOLoop.instance().start()

使用命令行启动:

python hello.py --port=8000

在浏览器中访问 http://localhost:8000,出现文本文字:hello,friendly user!

后台出现相关信息如下:

Tornado 编程首次接触及实践_第1张图片

至此最简单的例子运行成功。

相对完整的Tornado教程,可以参考http://demo.pythoner.com/itt2zh/ch1.html#ch1-1

也可以从github上获取到相关的示例代码:https://github.com/Introduction-to-Tornado/Introduction-to-Tornado

-------------------- 正文到此结束------------------------

推荐一个公众号:健哥聊量化,会持续推出股票相关基础知识,以及python实现的一些基本的分析代码。欢迎大家关注,二维码如下:

相关文章列表如下:

  • 股票基础知识----- K线形态

  • 股票K线形态 ----早晨之星

  • “早晨之星”实际操作篇---通达信软件为例

  • 牛刀小试----python+tushare进行股票分析

  • 股票K线形态----黄昏之星

  • 股票K线形态-----墓碑线

  • 股票K线形态-----多方炮

  • 股票K线形态-----红三兵

  • 股票K线形态----三只乌鸦

  • 股票K线形态-----锤头线、吊颈线、倒锤头线

你可能感兴趣的:(python,tornado,chrome,前端,python,后端)