-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
36 lines (30 loc) · 1.19 KB
/
main.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
import Funcoes.funcoes as malha
from flask import Flask, jsonify
from flask_cors import CORS
main = Flask(__name__)
CORS(main)
@main.route("/", methods=['GET'])
def home():
malhaEntrada.execute()
minimosQuadrados.execute()
saidaMalhaAberta.execute()
saidaMalhaFechada.execute()
saidaMalhaFechadaComGanho.execute()
saidaMalhaFechadaComGanhoPI.execute()
malhas = {
f'{malhaEntrada.nome}': malhaEntrada.returnData(),
f'{minimosQuadrados.nome}': minimosQuadrados.returnData(),
f'{saidaMalhaAberta.nome}': saidaMalhaAberta.returnData(),
f'{saidaMalhaFechada.nome}': saidaMalhaFechada.returnData(),
f'{saidaMalhaFechadaComGanho.nome}': saidaMalhaFechadaComGanho.returnData(),
f'{saidaMalhaFechadaComGanhoPI.nome}': saidaMalhaFechadaComGanhoPI.returnData()
}
return jsonify(malhas)
if __name__ == '__main__':
malhaEntrada = malha.MalhaEntrada()
minimosQuadrados = malha.MinimosQuadrados()
saidaMalhaAberta = malha.MalhaAberta()
saidaMalhaFechada = malha.MalhaFechada()
saidaMalhaFechadaComGanho = malha.MalhaFechadaComGanho()
saidaMalhaFechadaComGanhoPI = malha.MalhaFechadaComGanhoPI()
main.run(debug=True)