加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
video_server.py 943 Bytes
一键复制 编辑 原始数据 按行查看 历史
mason101 提交于 2020-09-26 10:04 . 视频资源抓取
# -*- coding: utf-8 -*-
# Project : tornado_video
# FileName : video_server.py
# Time : 2020/9/24 11:07
# Author  : Mason101
import os
import tornado.web
import tornado.ioloop
from config import config
from handlers import handlers
class Application(tornado.web.Application):
def __init__(self):
setting = {
"debug": True,
"xsrf_cookies": True,
"cookie_secret": "This_Is_Video_Server_Secret_",
"static_path": os.path.join(os.path.dirname(__file__), "static"),
"template_path": os.path.join(os.path.dirname(__file__), "templates"),
}
super(Application, self).__init__(handlers, **setting)
def run():
print(f"video server is running on {config['host']}:{config['port']} ......")
app = Application()
app.listen(config["port"], address=config["host"])
tornado.ioloop.IOLoop.current().start()
if __name__ == '__main__':
run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化