启动tornado项目,hello world

Posted andu99

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动tornado项目,hello world相关的知识,希望对你有一定的参考价值。

新建一个env虚拟环境

mkvirtualenv toenv

在虚拟环境中安装tornado

workon toenv

pip install tornado

技术分享图片

在D盘中新建tornado项目文件夹,就叫tornado。

在pycharm新建一个项目,因为pycharm没有tornado的项目,选择第一个python项目就好,把解释器指向 新建的虚拟环境toenv。

技术分享图片

新建main.py文件,输入代码:

# encoding: utf-8


"""
@version: ??
@author: andu99
@contact: [email protected]
@site: http://www.cnblogs.com/andu99/
@software: PyCharm
@file: main.py
@time: 2018/5/9 0009 上午 11:05
"""

import tornado.web
import tornado.ioloop


class IndexHandler(tornado.web.RequestHandler):
    """主页处理类"""

    def get(self):
        """get请求"""
        self.write(hello,andu)


if __name__ == __main__:
    app = tornado.web.Application([(r"/", IndexHandler)])
    app.listen(8000)
    tornado.ioloop.IOLoop.current().start()

运行该页面

技术分享图片

技术分享图片

打开浏览器:

 

技术分享图片

 

以上是关于启动tornado项目,hello world的主要内容,如果未能解决你的问题,请参考以下文章

tornado初级篇

tornado学习

tornado学习

Django 系列篇:Hello World!

idea插件开发- hello world

tornado