DmitrMakeev commited on
Commit
f18f04b
1 Parent(s): c570664

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +27 -0
app.py ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import flask
2
+ from flask import request, jsonify
3
+ import os
4
+ import json
5
+ from dotenv import load_dotenv
6
+ load_dotenv()
7
+ app = flask.Flask(__name__, template_folder="./")
8
+ @app.route('/')
9
+ def index():
10
+ return flask.render_template('index.html')
11
+ @app.route("/", methods=["POST"])
12
+ def predict():
13
+ incoming = request.get_json()
14
+ print(incoming)
15
+ # Ваша логика обработки текста здесь
16
+ return "Your response here"
17
+ @app.route("/avp", methods=["POST"])
18
+ def avp():
19
+ incoming = request.get_data()
20
+ incoming = json.loads(incoming)
21
+ print(incoming)
22
+ # Сохраняем принятую JSON-строку в переменной "outs"
23
+ outs = incoming
24
+ # Возвращаем полученную JSON-строку в ответе
25
+ return json.dumps(outs)
26
+ if __name__ == '__main__':
27
+ app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 7860)))