-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
73 lines (61 loc) · 1.96 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from flask import Flask, request, jsonify, render_template, send_from_directory
from health_utils import calculate_bmi, calculate_bmr
from dotenv import load_dotenv
import os
# Charger les variables d'environnement
load_dotenv()
app = Flask(__name__, template_folder="templates", static_folder="static")
# Ajouter un routeur pour les fichiers dans 'assets'
@app.route("/assets/<path:filename>")
def serve_assets(filename):
"""
Servir les fichiers du dossier 'assets'.
"""
return send_from_directory("assets", filename)
@app.route("/")
def home():
"""
Page d'accueil avec une interface utilisateur.
"""
return render_template("index.html")
@app.route("/bmi", methods=["POST"])
def bmi():
"""
Endpoint pour calculer le BMI.
"""
try:
data = request.get_json()
height = float(data["height"])
weight = float(data["weight"])
result = calculate_bmi(height, weight)
return jsonify({"bmi": result}), 200
except KeyError:
return jsonify({"error": "Veuillez fournir 'height' et 'weight'."}), 400
except ValueError as e:
return jsonify({"error": str(e)}), 400
@app.route("/bmr", methods=["POST"])
def bmr():
"""
Endpoint pour calculer le BMR.
"""
try:
data = request.get_json()
height = float(data["height"])
weight = float(data["weight"])
age = int(data["age"])
gender = str(data["gender"])
result = calculate_bmr(height, weight, age, gender)
return jsonify({"bmr": result}), 200
except KeyError:
return (
jsonify(
{"error": "Veuillez fournir 'height', 'weight', 'age', et 'gender'."}
),
400,
)
except ValueError as e:
return jsonify({"error": str(e)}), 400
if __name__ == "__main__":
# Charger le port depuis .env ou utiliser le port 5000 par défaut
PORT = int(os.getenv("PORT", 5000))
app.run(host="0.0.0.0", port=PORT)