Spaces:
Sleeping
Sleeping
from flask import request, jsonify | |
import globs | |
import os | |
api_variable = os.getenv('api') | |
def api(): | |
#globs.initialize() | |
# Читаем значение параметра "ph" из GET-запроса | |
globs.ph = request.args.get('ph') | |
# Читаем значение параметра "ec" из GET-запроса | |
globs.ec = request.args.get('ec') | |
# Создаем JSON-объект с прочитанными значениями параметров | |
response = { | |
"ph_out": globs.ph, | |
"ec_out": globs.ec, | |
"detect": api_variable | |
} | |
# Возвращаем JSON-объект | |
return jsonify(response) |