This commit is contained in:
2026-01-27 19:08:46 +08:00
parent 0918f7ae5a
commit e20bf203e6
25 changed files with 4051 additions and 701 deletions

View File

@@ -0,0 +1,10 @@
import requests
try:
url = "http://localhost:8001/api/lab/kpi"
print(f"Requesting {url}...")
resp = requests.get(url, timeout=5)
print("Status Code:", resp.status_code)
print("Response JSON:", resp.json())
except Exception as e:
print("Error:", e)