List

async AsyncCogniteClient.data_modeling.streams.list() StreamList

List streams.

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:

StreamList

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()