DmitrMakeev commited on
Commit
89fe525
1 Parent(s): 172d49d

Create api_logic.py

Browse files
Files changed (1) hide show
  1. api_logic.py +16 -0
api_logic.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import request, jsonify
2
+ def api():
3
+ # Читаем значение параметра "ph" из GET-запроса
4
+ ph = request.args.get('ph')
5
+
6
+ # Читаем значение параметра "ec" из GET-запроса
7
+ ec = request.args.get('ec')
8
+
9
+ # Создаем JSON-объект с прочитанными значениями параметров
10
+ response = {
11
+ "ph_out": ph,
12
+ "ec_out": ec
13
+ }
14
+
15
+ # Возвращаем JSON-объект
16
+ return jsonify(response)