-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebapp.py
77 lines (70 loc) · 1.42 KB
/
webapp.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
74
75
76
77
from flask import Flask, render_template, request
from flask_mysqldb import MySQL
import json
app = Flask(__name__)
'''
Load from json file the configuration for MySQL R-DBMS data
'''
for prop, val in json.load(open('mysql_config.json')).items():
app.config[f'''MYSQL_{prop.upper()}'''] = val
mysql = MySQL(app)
'''
execute the query and return Result-Set
'''
def findPersons(fields):
_q = f'''
SELECT
{', '.join(fields)}
FROM
PersonList
WHERE
1
ORDER BY
h ASC;
'''
_cur = mysql.connection.cursor()
_num_rows = _cur.execute(_q)
_rs = _cur.fetchall()
_cur.close()
return _rs
'''
NB: the temlate files must be into ./templates dir
'''
@app.route('/')
def home():
fields = (
'id',
'firstname',
'lastname',
'gender',
'h',
'age'
)
return render_template(
'showQuery.html',
titolo='Show Person List',
sql_tab=findPersons(fields),
sql_fields=fields
)
@app.route('/api/<int:id>', methods=['DELETE','GET'])
def deletePerson(id):
#_id = request.values.get('id', default=-1, type=int)
_q = f'''DELETE FROM PersonList WHERE id={id};'''
_cur = mysql.connection.cursor()
_affected_rows = _cur.execute(_q)
mysql.connection.commit()
_cur.close()
return app.response_class(
status=200,
mimetype='application/json',
response = json.dumps( { 'affected_rows' : _affected_rows } )
)
if __name__ == '__main__':
app.run(debug=True)
'''
app.run(
debug=True,
host='localhost'
port=8000
)
'''