30 lines
575 B
Python
30 lines
575 B
Python
|
import json
|
||
|
import requests
|
||
|
|
||
|
def get_session():
|
||
|
login_data = {'username':"admin","password":"admin"}
|
||
|
inf_s = requests.Session()
|
||
|
inf_s.post('http://10.30.1.138:5000/login', login_data)
|
||
|
|
||
|
return inf_s
|
||
|
|
||
|
def req_edit_state(id, state):
|
||
|
inf_s = get_session()
|
||
|
|
||
|
if state == "false":
|
||
|
state = False
|
||
|
|
||
|
if state == "true":
|
||
|
state = True
|
||
|
|
||
|
req_val = {"id":id,"status":state}
|
||
|
req_val = json.dumps(req_val)
|
||
|
|
||
|
print("Req Val --> ", req_val)
|
||
|
|
||
|
req = inf_s.post('http://10.30.1.138:5000/client/set-status', req_val)
|
||
|
|
||
|
print(req)
|
||
|
|
||
|
|