Shortcuts

geodesic.tesseract.get_jobs

geodesic.tesseract.get_jobs(search=None, project=None, status='all')[source]

returns a list of Tesseract Jobs

Parameters
  • 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"

Docs

Developer documentation for Seer AI APIs

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources