加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
blog_server.py 806 Bytes
一键复制 编辑 原始数据 按行查看 历史
mason101 提交于 2020-06-24 14:08 . 1.0完整代码上传
import os
import tornado.web
import tornado.ioloop
from handler import handlers
from config import PORT, ADDRESS
# 静态文件配置
setting = {
"template_path": os.path.join(os.path.dirname(__file__), "templates"),
"static_path": os.path.join(os.path.dirname(__file__), "static"),
"cookie_secret": "bZJc2sWbQLKos6GkHn/VB9oXwQt8S0R0kRvJ5/xJ89E=",
"login_url": "/author/login",
"debug": True,
}
print(setting)
class Application(tornado.web.Application):
def __init__(self):
super(Application, self).__init__(handlers=handlers, **setting)
def main():
app = Application()
app.listen(port=PORT, address=ADDRESS)
print("server is run on http://%s:%s" % (ADDRESS, str(PORT)))
tornado.ioloop.IOLoop().current().start()
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化