6 lines
128 B
Python
6 lines
128 B
Python
import requests
|
|
import json
|
|
|
|
resp = requests.get("http://localhost:3015/auth-status")
|
|
print(resp.status_code)
|
|
print(resp.json()) |