1 Star 0 Fork 0

498110811/orc-12306

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
web.py 637 Bytes
一键复制 编辑 原始数据 按行查看 历史
Any灬沐木 提交于 2019-10-16 10:53 . 修复斜杠 bug #2
import base64
from flask import Flask, jsonify, request
from config import Config
from ocr.ml_predict import Predict
app = Flask(__name__)
class Web:
def run(self):
app.run(**Config.WEB)
@app.route('/check', methods=['POST'], strict_slashes=False)
def check():
img = request.form.get('img')
try:
img = base64.b64decode(img)
except Exception as e:
pass
if not img:
return jsonify({'msg': 'Wrong format. '})
result = Predict.share().get_coordinate(img)
return jsonify({
'msg': 'success',
'result': result
})
if __name__ == '__main__':
Web().run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mm498110811_admin/orc-12306.git
git@gitee.com:mm498110811_admin/orc-12306.git
mm498110811_admin
orc-12306
orc-12306
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385