I have successfully connected via the python API to my Celonis instance.
I can see that each folder or analysis has an attribute to access which project it belongs to. ie: folder.project
However, if i start from a specific project how do i obtain a list of folders and analyses within it?
Im essentially aiming to get something like this to begin with:
for p in Project.load_all():
print(
)
for f in p.Folder.load_all():
print(\\t\\t+
)
for a in p.f.Analysis.load_all():
print(\\t\\t\\t +