tidy3d.web.api.webapi.get_tasks

Contents

tidy3d.web.api.webapi.get_tasks#

class get_tasks[source]#

Bases:

Get a list with the metadata of the last num_tasks tasks.

Parameters:
  • num_tasks (int = None) – The number of tasks to return, or, if None, return all.

  • order (Literal["new", "old"] = "new") – Return the tasks in order of newest-first or oldest-first.

  • folder (str = "default") – Folder from which to get the tasks.

Returns:

List of dictionaries storing the information for each of the tasks last num_tasks tasks.

Return type:

List[Dict]

Inherited Common Usage