List simulators
- async AsyncCogniteClient.simulators.list(
- limit: int | None = 25,
-
- Parameters:
limit (int | None) – Maximum number of results to return. Defaults to 25. Set to -1, float(“inf”) or None to return all items.
- Returns:
List of simulators
- Return type:
Examples
- List simulators:
>>> from cognite.client import CogniteClient, AsyncCogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> res = client.simulators.list(limit=10)
- Iterate over simulators, one-by-one:
>>> for simulator in client.simulators(): ... simulator # do something with the simulator