import requests
url = "http://api/apollo/experiments/status"
response = requests.get(url)
print(response.text)[
{
"status": "starting",
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]import requests
url = "http://api/apollo/experiments/status"
response = requests.get(url)
print(response.text)[
{
"status": "starting",
"node": "<string>",
"messages": [
{
"date": "2023-11-07T05:31:56Z",
"message": "<string>"
}
]
}
]Was this page helpful?