3 Star 0 Fork 1

青青/mvip-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 952 Bytes
一键复制 编辑 原始数据 按行查看 历史
shangjinyao@cti-cert.com 提交于 2024-04-07 19:53 . 1. 优化图片转换
import webbrowser
from flask import Flask, request, jsonify, render_template
from application.images.ConvertImg.ImgTool import getImgBlueprint
"""
如果安装了pip install flask-cors 仍然提示找不到包 则使用下面方式指定安装的包位置
打包:
pyinstaller -F -i favicon32.ico main.py --add-data "templates;templates" --add-data "static;static"
"""
import sys
sys.path.append("d:\python\python39\lib\site-packages")
from flask_cors import CORS
# 映射静态资源
app = Flask(__name__, static_folder='static', static_url_path='/', template_folder='templates')
app.register_blueprint(getImgBlueprint())
@app.route('/', methods=['GET'])
def Index():
return render_template('index.html')
def open_browser():
webbrowser.open("http://127.0.0.1:7777")
CORS(app, resources=r'/*')
if __name__ == '__main__':
# threading.Timer(1, open_browser).start()
app.debug = True
app.run(host="0.0.0.0", port=7777)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/JYVFJ/mvip-convert.git
git@gitee.com:JYVFJ/mvip-convert.git
JYVFJ
mvip-convert
mvip-tools
master

搜索帮助