Retrieves the console output of the OpenDroneMap's process. Useful for monitoring execution and to provide updates to the user.
(self, uuid, line)
| 157 | return task_info |
| 158 | |
| 159 | def get_task_console_output(self, uuid, line): |
| 160 | """ |
| 161 | Retrieves the console output of the OpenDroneMap's process. |
| 162 | Useful for monitoring execution and to provide updates to the user. |
| 163 | """ |
| 164 | api_client = self.api_client() |
| 165 | task = api_client.get_task(uuid) |
| 166 | return task.output(line) |
| 167 | |
| 168 | def cancel_task(self, uuid): |
| 169 | """ |