Learn about the physical data model and how it implements your conceptual model in CDF Data Modeling Service (DMS).
The physical data model implements your conceptual data model in Cognite Data Fusion (CDF) via the Data Modeling Service (DMS).Use NeatSession to read and write data models to Excel files:
Report incorrect code
Copy
Ask AI
from cognite.neat import NeatSession, get_cognite_clientclient = get_cognite_client(".env")neat = NeatSession(client)# Reading an existing data modelneat.physical_data_model.read.excel("path/to/excel/file.xlsx")# Writing a data model to an Excel fileneat.physical_data_model.write.excel("path/to/excel/file.xlsx")