tornado使用(Mac)

安装需求

Tornado 在 Python 2.5, 2.6, 2.7 中都经过了测试。要使用 Tornado 的所有功能,你需要安装 PycURL (7.18.2 或更高版本) 以及 simplejson (仅适用于Python 2.5,2.6 以后的版本标准库当中已经包含了对 JSON 的支持)。为方便起见,下面将列出 Mac OS X 和 Ubuntu 中的完整安装方式:

Mac OS X 10.6 (Python 2.6+)

sudo easy_install setuptools pycurl

 

例子:

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()
View Code

tornado使用(Mac)_第1张图片

参考:

http://www.tornadoweb.cn/

http://yijiebuyi.com/blog/b6a3f4a726b9c0454e28156dcc96c342.html

http://www.tuicool.com/articles/vIfiUvM

http://docs.jinkan.org/docs/flask/ 

http://docs.jinkan.org/docs/flask/index.html

你可能感兴趣的:(tornado使用(Mac))