NeatSession to read and write data models to Excel files:
Learn about the physical data model and how it implements your conceptual model in CDF Data Modeling Service (DMS).
NeatSession to read and write data models to Excel files:
from cognite.neat import NeatSession, get_cognite_client
client = get_cognite_client(".env")
neat = NeatSession(client)
# Reading an existing data model
neat.physical_data_model.read.excel("path/to/excel/file.xlsx")
# Writing a data model to an Excel file
neat.physical_data_model.write.excel("path/to/excel/file.xlsx")
Was this page helpful?