1 Star 0 Fork 3

mliu/CZ_OpenSpice

forked from Colson Zhang/CZ_OpenSpice 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.py 3.58 KB
一键复制 编辑 原始数据 按行查看 历史
Colson Zhang 提交于 2021-03-30 17:47 . add a new index
import tornado.ioloop #开启循环,让服务一直等待请求的到来
import tornado.web #web服务基本功能都封装在此模块中
import tornado.options #从命令行中读取设置
from tornado.options import define,options #导入包
from handler import main, auth, spice
# import _thread,threading
# from spice import app_spice
define('port',default='9000',help='Listening port',type=int) #定义如何接受传进来的东西
class Application(tornado.web.Application): #引入Application类,重写方法,这样做的好处在于可以自定义,添加另一些功能
def __init__(self):
handlers = [
(r'/',main.Open_Index_Zh_Handler),
(r'/index_test',main.IndexHandler),
(r'/index',main.Index_Zh_Handler),
(r'/index_Zh',main.Index_Zh_Handler),
(r'/index_En',main.Index_En_Handler),
(r'/open_index_Zh',main.Open_Index_Zh_Handler),
(r'/open_index_En',main.Open_Index_En_Handler),
(r'/login',auth.LoginHandler),
(r'/logout',auth.LogoutHandler),
(r'/register',auth.RegisterHandler),
(r'/schematic',spice.Schematic_Handler),
(r'/spice1',spice.Spice_1_Handler),
(r'/spice2',spice.Spice_2_Handler),
(r'/spice3',spice.Spice_3_Handler),
(r'/spice4',spice.Spice_4_Handler),
(r'/test',main.TestHandler),
(r'/spice',spice.SpiceHandler),
(r'/simulation',spice.SimulationHandler),
(r'/getsiminfo',spice.SimulationInfoRequest_Handler),
]
settings = dict(
debug = False, #调试模式,修改后自动重启服务,不需要自动重启,生产情况下切勿开启,安全性
# autoescape = None,
template_path='template', #模板文件目录,想要Tornado能够正确的找到html文件,需要在 Application 中指定文件的位置
static_path='static', #静态文件目录,可用于用于访问js,css,图片之类的添加此配置之后,tornado就能自己找到静态文件
login_url='/login', #没有登录则跳转至此
cookie_secret='1q2w3e4r', # 加密cookie的字符串
pycket={ #固定写法packet,用于保存用户登录信息
'engine': 'redis',
'storage': {
'host': 'localhost',
'port': 6379,
'db_sessions': 5,
'db_notifications': 11,
'max_connections': 2 ** 33,
},
'cookie': {
# 'expires_secends': 1*60
'expires_days': 1,
'max_age': 100
}
}
)
static_hash_cache=False
super(Application,self).__init__(handlers,**settings) #用super方法将父类的init方法重新执行一遍,然后将handlers和settings传进去,完成初始化
app = Application() #实例化
if __name__ == '__main__': #当.py文件被直接运行时,代码块将被运行;当.py文件以模块形式被导入时,代码块不被运行。
# 开启 bokeh 服务
# app_spice.app_spice_begin()
tornado.options.parse_command_line()
app.listen(options.port) ##如果一个与define语句中同名的设置在命令行中被给出,那么它将成为全局的options的一个属性 即 options.port 相当于define的url的port
print("Server start on port {}".format(str(options.port))) #提示服务启动占用端口
tornado.ioloop.IOLoop.current().start() #执行ioloop
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mliu/CZ_OpenSpice.git
git@gitee.com:mliu/CZ_OpenSpice.git
mliu
CZ_OpenSpice
CZ_OpenSpice
main

搜索帮助