1 Star 0 Fork 2

yuanjialiang22/tornadoApiDemo

forked from 张程/tornadoApiDemo 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.py 597 Bytes
一键复制 编辑 原始数据 按行查看 历史
zc2017 提交于 2021-02-20 16:53 . third commit
# -*- coding: utf-8 -*-
# @Time : 2021/2/19 18:55
# @Author : zhangcheng
# @Software: PyCharm
import tornado.httpserver
import tornado.web
import tornado.ioloop
import tornado.escape
from tornado.options import define, options
from handler.handlers_urls import handlers
define("port", default=8000, help="run port", type=int)
if __name__ == '__main__':
options.parse_command_line()
app = tornado.web.Application(handlers)
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(options.port)
print("start server...")
tornado.ioloop.IOLoop.current().start()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yuanjialiang22/tornado-api-demo.git
git@gitee.com:yuanjialiang22/tornado-api-demo.git
yuanjialiang22
tornado-api-demo
tornadoApiDemo
master

搜索帮助