Spaces:
Sleeping
Sleeping
File size: 541 Bytes
89fe525 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from flask import request, jsonify
def api():
# Читаем значение параметра "ph" из GET-запроса
ph = request.args.get('ph')
# Читаем значение параметра "ec" из GET-запроса
ec = request.args.get('ec')
# Создаем JSON-объект с прочитанными значениями параметров
response = {
"ph_out": ph,
"ec_out": ec
}
# Возвращаем JSON-объект
return jsonify(response) |