from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.servers.start_rescue_mode(server_id="sv_WeGoqAWNOP7nz")
# Handle response
print(res){
"meta": {}
}Starts rescue mode on a given server.
from latitudesh_python_sdk import Latitudesh
import os
with Latitudesh(
bearer=os.getenv("LATITUDESH_BEARER", ""),
) as latitudesh:
res = latitudesh.servers.start_rescue_mode(server_id="sv_WeGoqAWNOP7nz")
# Handle response
print(res){
"meta": {}
}Documentation Index
Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?