File size: 683 Bytes
89fe525
4da42d7
f93443c
d102756
a312100
 
89fe525
3cea283
efd6be6
89fe525
e742b3e
89fe525
 
e742b3e
89fe525
 
 
e742b3e
 
58c6f6f
89fe525
 
 
44b3ba8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)