added the support of historique functionnality into the client

This commit is contained in:
0llino 2023-01-10 09:49:06 +01:00
parent 8f389b5137
commit 573ae6ef9a

View file

@ -21,6 +21,14 @@ def send_request(apiurl, headers, method="GET"):
data = req.json()
match apiurl.split('/')[-1]:
case "historique":
for element in data:
if element['query'] == '':
print(f"id : {element['id']}, method : {element['method']}, section : {element['section']}")
else:
print(f"id : {element['id']}, method : {element['method']}, query : {element['query']}, section : {element['section']}")
case other:
for element in data:
try:
print("")