一、安装Tornado
本文这里直接是在Pycharm上安装的Tornado框架, 在终端上,执行如下命令,安装Tornado:
pip install tornado
安装非常快,安装完成后会有Successfully installed字样输出,如下所示:
二、简单使用Tornado
直接上代码,如下所示:
# coding = utf-8
from typing import Optional, Awaitable
import tornado.web
import tornado.ioloop
class Function(tornado.web.RequestHandler):
def data_received(self, chunk: bytes) -> Optional[Awaitable[None]]:
pass
def get(self):
self.write('hello world')
if __name__ == '__main__':
app = tornado.web.Application([(r'/', Function)])
app.listen(8088)
tornado.ioloop.IOLoop.current().start()
运行起来之后,在浏览器中输入:127.0.0.1:8088,