Python API - How to determine the next expected start time of a triggered scenario
JohnB
Registered Posts: 32 ✭✭✭✭✭
I would like to know via a trigger defintion when a scenario is next expected to run.
Can this be obtained via the Python API?
Best Answer
-
Hi,
Yes, you can obtain it via the Python API. The sample code below will do it:
import dataiku
from dataiku import pandasutils as pdu
import pandas as pdclient = dataiku.api_client()
project = client.get_project("your_project_key")
scenario = project.get_scenario("your_scenario_key")
scenario_def = scenario.get_definition()
scenario_def['triggerDigestItems']Hope this helps!
Answers
-
Hi Kimmy,
Yes that helps a lot. Thanks!