DmitrMakeev commited on
Commit
4def4e6
1 Parent(s): b022a46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -27,10 +27,10 @@ def zapro():
27
  @app.route("/test2", methods=['GET'])
28
  def zapro2():
29
  # Читаем значение параметра "T1" из GET-запроса
30
- t1 = request.args.get('ph')
31
 
32
  # Читаем значение параметра "test2" из GET-запроса
33
- test2 = request.args.get('ec')
34
 
35
  # Создаем JSON-объект с прочитанными значениями параметров
36
  response = {
 
27
  @app.route("/test2", methods=['GET'])
28
  def zapro2():
29
  # Читаем значение параметра "T1" из GET-запроса
30
+ ph = request.args.get('ph')
31
 
32
  # Читаем значение параметра "test2" из GET-запроса
33
+ ec = request.args.get('ec')
34
 
35
  # Создаем JSON-объект с прочитанными значениями параметров
36
  response = {