5 Star 4 Fork 7

行云流水/opsweb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.py 738 Bytes
一键复制 编辑 原始数据 按行查看 历史
wylok 提交于 2017-10-27 14:48 . Add files via upload
#-*- coding: utf-8 -*-
from flask import redirect,url_for,make_response,render_template
from flask_wtf.csrf import CsrfProtect
import index,login,logout
from flask_qrcode import QRcode
from flask_moment import Moment
import __init__
app = __init__.app
CsrfProtect(app)
moment = Moment(app)
qrcode = QRcode(app)
limiter = __init__.limiter
app.config.get('TRAP_HTTP_EXCEPTIONS')
app.register_blueprint(login.page_login)
app.register_blueprint(logout.page_logout)
app.register_blueprint(index.page_index)
@app.route('/')
@limiter.exempt
def main():
return redirect(url_for('index.index'))
@app.errorhandler(404)
def page_not_found(error):
resp = make_response(render_template('404.html'),404)
return resp
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/1qaz_zhouqi/opsweb.git
git@gitee.com:1qaz_zhouqi/opsweb.git
1qaz_zhouqi
opsweb
opsweb
master

搜索帮助