DmitrMakeev's picture
Update app.py
5bbb1ee
raw
history blame
496 Bytes
import flask
from flask import request, jsonify
import os
from dotenv import load_dotenv
load_dotenv()
app = flask.Flask(__name__, template_folder="./")
@app.route('/')
def index():
return flask.render_template('index.html')
@app.route("/avp", methods=["POST"])
def avp():
incoming = request.get_json()
print(incoming)
datas = incoming.get("bazis", {})
return jsonify(datas)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 7860)))