This is the Cognite Python SDK for developers and data scientists working with Cognite Data Fusion (CDF). The package is tightly integrated with pandas, and helps you work easily and efficiently with data in Cognite Data Fusion (CDF).
The SDK v8 introduces full async support with the new AsyncCogniteClient. This enables:
- Native
async/awaitpatterns for all API operations - Non-blocking concurrent operations directly in Notebooks (including browser-based via Pyodide) and UI frameworks like Streamlit
- Significantly faster file uploads on Windows (new underlying HTTP client,
httpx)
# Async client (new in v8!)
from cognite.client import AsyncCogniteClient
async def main():
client = AsyncCogniteClient()
tss = await client.time_series.list()
# Sync client (still supported)
from cognite.client import CogniteClient
client = CogniteClient()
tss = client.time_series.list()The synchronous CogniteClient remains fully supported and now wraps the async client internally.
See the Migration Guide for a complete list of changes.
To install the core version of this package:
pip install cognite-sdkA number of optional dependencies may be specified in order to support a wider set of features. The available extras (along with the libraries they include) are:
- numpy
[numpy] - pandas
[pandas] - geo
[geopandas, shapely] - sympy
[sympy] - functions
[pip] - yaml
[PyYAML] - all
[numpy, pandas, geopandas, shapely, sympy, pip, PyYAML]
To include optional dependencies:
pip:
pip install "cognite-sdk[pandas, geo]"poetry:
poetry add cognite-sdk -E pandas -E geouv:
uv add "cognite-sdk[pandas, geo]"If you regularly need to fetch large amounts of datapoints, consider installing with numpy
(or with pandas, as it depends on numpy) for best performance, then use the retrieve_arrays (or retrieve_dataframe) endpoint(s). This avoids building large pure Python data structures, and instead reads data directly into memory-efficient numpy.ndarrays.
If you experience issues installing the geo extra on Windows, consider using conda to install geopandas first. See the geopandas installation page for details.
Wondering about upcoming or previous changes to the SDK? Take a look at the CHANGELOG.
To help you upgrade your code(base) quickly and safely to a newer major version of the SDK, check out our migration guide. It is a more focused guide based on the detailed change log. MIGRATION GUIDE.
Want to contribute? Check out CONTRIBUTING.