| import flask |
| from flask import request, jsonify |
| import os |
| import json |
| from dotenv import load_dotenv |
|
|
| load_dotenv() |
| app = flask.Flask(__name__, template_folder="./") |
| app.config["DEBUG"] = True |
|
|
| @app.route('/') |
| def index(): |
| return flask.render_template('index.html') |
|
|
| @app.route("/", methods=["POST"]) |
| def predict(): |
| incoming = request.get_json() |
| print(incoming) |
| |
| return "Your response here" |
|
|
| @app.route("/avp", methods=["POST"]) |
| def avp(): |
| try: |
| incoming = request.get_json() |
| print(incoming) |
| result = {} |
| for key, value in incoming.items(): |
| if int(value) > 0: |
| result[key] = str(int(value) - 1) |
| else: |
| result[key] = "0" |
| response = jsonify(result) |
| return response |
| except Exception as e: |
| error_response = { |
| "error": str(e) |
| } |
| return jsonify(error_response), 500 |
|
|
| if __name__ == '__main__': |
| app.run(host='0.0.0.0', port=int(os.environ.get('PORT', 7860))) |