List
- async AsyncCogniteClient.data_modeling.streams.list() StreamList
-
Note
There is no paging limit parameter: the endpoint returns all streams in the project (projects are expected to have few streams).
- Returns:
The streams in the project.
- Return type:
Examples
List all streams in the project:
>>> from cognite.client import CogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> res = client.data_modeling.streams.list()