Python API - How to determine the next expected start time of a triggered scenario

Options
JohnB
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

  • KimmyC
    KimmyC Dataiker Posts: 34 Dataiker
    Answer ✓
    Options

    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 pd

    client = 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

Setup Info
    Tags
      Help me…