-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.p2
78 lines (63 loc) · 2.17 KB
/
app.p2
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
74
75
76
77
78
import pandas as pd
from flask import Flask, render_template, request
app = Flask(__name__)
# Cargar los datos desde 'xlsx'
df_work = pd.read_excel('dfwork.xlsx', sheet_name='Sheet1')
############ F U N C I O N E S ###########
def cantidad_filmaciones_mes(v_Mes):
return 'test pelis mes'
def cantidad_filmaciones_dia(v_Dia):
return 'test pelis dia'
def score_titulo(v_nom_pel):
return 'test score'
def votos_titulo(v_titulo):
return 'test votos'
def get_actor(v_nom_actor):
return 'test actor'
def get_director(v_nom_dire):
return 'test director'
def recomendacion(gustos):
return 'test recomendacion'
def open_readme():
return 'test readme'
@app.route("/")
def index():
return render_template("index.html")
@app.route("/consulta", methods=["GET"])
def consulta():
opcion = request.args.get("opcion", type=int)
if opcion == 1:
v_Mes = request.args.get("v_Mes")
cantidad_filmaciones_mes(v_Mes)
return {"message": "Consulta realizada pel x mes"}
elif opcion == 2:
v_Dia = request.args.get("v_Dia")
cantidad_filmaciones_dia(v_Dia)
return {"message": "Consulta realizada pel x día"}
elif opcion == 3:
v_nom_pel = request.args.get("v_nom_pel")
score_titulo(v_nom_pel)
return {"message": "Consulta realizada pel score"}
elif opcion == 4:
v_titulo = request.args.get("v_titulo")
votos_titulo(v_titulo)
return {"message": "Consulta realizada votos"}
elif opcion == 5:
v_nom_actor = request.args.get("v_nom_actor")
get_actor(v_nom_actor)
return {"message": "Consulta realizada actor"}
elif opcion == 6:
v_nom_dire = request.args.get("v_nom_dire")
get_director(v_nom_dire)
return {"message": "Consulta realizada director"}
elif opcion == 7:
gustos = request.args.get("gustos")
recomendacion(gustos)
return {"message": "Consulta realizada recomendación"}
elif opcion == 8:
open_readme()
return {"message": "Consulta realizada"}
else:
return {"message": "Opción no válida"}
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8080)