MCPcopy Index your code
hub / github.com/google/earthengine-api / getTaskList

Function getTaskList

python/ee/data.py:1597–1606  ·  view source on GitHub ↗

Retrieves a list of the user's tasks. Returns: A list of task status dictionaries, one for each task submitted to EE by the current user. These include currently running tasks as well as recently canceled or failed tasks.

()

Source from the content-addressed store, hash-verified

1595
1596@deprecation.Deprecated('Use listOperations')
1597def getTaskList() -> list[Any]:
1598 """Retrieves a list of the user's tasks.
1599
1600 Returns:
1601 A list of task status dictionaries, one for each task submitted to EE by
1602 the current user. These include currently running tasks as well as recently
1603 canceled or failed tasks.
1604 """
1605 return [_cloud_api_utils.convert_operation_to_task(o)
1606 for o in listOperations()]
1607
1608
1609def listOperations(project: str | None = None) -> list[Any]:

Callers

nothing calls this directly

Calls 1

listOperationsFunction · 0.85

Tested by

no test coverage detected