DmitrMakeev commited on
Commit
59cab72
1 Parent(s): da413a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -1
app.py CHANGED
@@ -24,7 +24,24 @@ def zapro():
24
  return flask.render_template('zapro.html')
25
 
26
 
27
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  @app.route("/avp", methods=["POST"])
30
  def avp():
 
24
  return flask.render_template('zapro.html')
25
 
26
 
27
+ @app.route("/test2", methods=['GET'])
28
+ def zapro():
29
+ # Читаем значение параметра "T1" из GET-запроса
30
+ t1 = request.args.get('T1')
31
+
32
+ # Читаем значение параметра "test2" из GET-запроса
33
+ test2 = request.args.get('test2')
34
+
35
+ # Создаем JSON-объект с прочитанными значениями параметров
36
+ response = {
37
+ "T1": t1,
38
+ "test2": test2
39
+ }
40
+
41
+ # Возвращаем JSON-объект и задаем MIME-тип application/json
42
+ return jsonify(response)
43
+ if __name__ == '__main__':
44
+ app.run()
45
 
46
  @app.route("/avp", methods=["POST"])
47
  def avp():