Spaces:
Sleeping
Sleeping
DmitrMakeev
commited on
Commit
•
e742b3e
1
Parent(s):
58c6f6f
Update api_logic.py
Browse files- api_logic.py +4 -4
api_logic.py
CHANGED
@@ -8,15 +8,15 @@ def api():
|
|
8 |
#globs.initialize()
|
9 |
|
10 |
# Читаем значение параметра "ph" из GET-запроса
|
11 |
-
globs.
|
12 |
|
13 |
# Читаем значение параметра "ec" из GET-запроса
|
14 |
-
globs.
|
15 |
|
16 |
# Создаем JSON-объект с прочитанными значениями параметров
|
17 |
response = {
|
18 |
-
"ph_out": globs.
|
19 |
-
"ec_out": globs.
|
20 |
"detect": api_variable
|
21 |
}
|
22 |
|
|
|
8 |
#globs.initialize()
|
9 |
|
10 |
# Читаем значение параметра "ph" из GET-запроса
|
11 |
+
globs.ph = request.args.get('ph')
|
12 |
|
13 |
# Читаем значение параметра "ec" из GET-запроса
|
14 |
+
globs.ec = request.args.get('ec')
|
15 |
|
16 |
# Создаем JSON-объект с прочитанными значениями параметров
|
17 |
response = {
|
18 |
+
"ph_out": globs.ph,
|
19 |
+
"ec_out": globs.ec,
|
20 |
"detect": api_variable
|
21 |
}
|
22 |
|