Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on January 20, 2025 4:19PM
Likes: 0
Replies: 2
I can see this information in the timeline in the UI, but doesn't seem to be in the data returned by:
ar = client.get_artifact('ar.26421')
print(ar.get_definition().get_raw())
Operating system used: Windows
The timeline object comes from the Project, you can try with that:
import dataiku client = dataiku.api_client() project = client.get_default_project() timeline = project.get_timeline(item_count=100) print(timeline)
Thanks for the suggestion, but I'm afraid this is on a DSS project API, but I would like the timeline information from the Govern API which doesn't seem to have a get_timeline() method.