sdk.algorithm_computation.get()

elements.sdk.api.algorithm_computation

Get an Algorithm Computation.

This wrapper will get the status of your computations.

Parameters

  • computation_ids (List[str]) - list of Algorithm Computations to get
  • [Optional] pagination (Pagination) - Pagination object only with page size field set

Returns

List[AlgorithmComputation]

Example(s)

# Get Algorithm Computations
computations = await sdk.algorithm_computation.get(
  computation_ids=["01d0d2ec-9ed8-4b9e-a9c7-f95dbbc092ff"]
)

# Output (List[AlgorithmComputation])
[id: "01d0d2ec-9ed8-4b9e-a9c7-f95dbbc092ff"
aoi_collection_id: "41e3fb68-fa89-4e20-b4d1-2884ef3cb0ce"
algo_config_id: "a551c228-f283-42d4-899c-aefa2fa1e52d"
toi_id: "12847bf4-2c77-4468-a1ef-dd67566954e3"
submitted_on {
  seconds: 1667403408
  nanos: 388930000
}
state: IN_PROGRESS
progress {
  running: 100.0
}
last_execution {
}
]