Skip to main content
Question

How to get all data model name using python

  • February 11, 2021
  • 2 replies
  • 2 views

Hi All, Im try to get all my data model list in my celonis application, for the purpose migrating to prd to UAT etc is there any syntax in python to get the list of DM. Thanks,

2 replies

Hi Vellingiri, You can use pycelonis our python library to easily achieve that. This library also comes pre-installed in Machine Learning Workbench of Celonis. Here is the documention: https://celonis.github.io/pycelonis/reference/pycelonis.celonis_api.event_collection.data_model.html You can do something like: from pycelonis import get_celonis celonis = get_celonis() celonis.datamodels Best, Noor

  • Author
  • Level 1
  • 1 reply
  • February 11, 2021
Thanks Noor, its working