当前位置:   article > 正文

【代码】python Flask实现程序运行结果展示在网页_python3 flask框架实现页面端展示cmd输出信息

python3 flask框架实现页面端展示cmd输出信息

目录

1 代码

2 结果

1 代码

  1. from flask import Flask, request, jsonify
  2. import json
  3. app = Flask(__name__)
  4. @app.route('/img/recog', methods=['GET', 'POST'])
  5. def img_recog():
  6. filePath = request.args.get('filePath', None)
  7. if filePath:
  8. from test import run
  9. # run为test文件里面的图像解析代码,请自行编写
  10. result_dict = run(filePath)
  11. if len(result_dict) > 0:
  12. response = dict()
  13. response["msg"] = "成功"
  14. response["status"] = "1"
  15. response["result"] = str(re
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/380631
推荐阅读
相关标签
  

闽ICP备14008679号