geodesic.tesseract.job.list_jobs¶
- geodesic.tesseract.job.list_jobs(search=None, project=None, status='all')[source]¶
Deprecated in v1.0.0
returns a list of Tesseract Jobs
- Args:
search: a search string used to search within the jobs name, alias or description. This will do simple partial string matching. project: the name of the project to search jobs. Defaults to the current active project. status: return only jobs that have this status. this can be ‘completed, ‘running’, ‘deleted’, or ‘all’ (default) to return jobs in any state.
- Returns:
a
JobList
of matching Jobs- Example:
To list Tesseract jobs related to Hurricane Ida we could run the list_jobs() function like so:
>>> jobs = list_jobs( ... search="ida", ... project="ida-demo", ... status="completed" ... ) >>> jobs[0].alias "Ida Road Model"