airflow.timetables.simple

Module Contents

class airflow.timetables.simple.NullTimetable[source]

Bases: airflow.timetables.simple._TrivialTimetable

Timetable that never schedules anything.

This corresponds to schedule_interval=None.

summary[source]
next_dagrun_info(self, *, last_automated_data_interval: Optional[DataInterval], restriction: TimeRestriction)[source]
class airflow.timetables.simple.OnceTimetable[source]

Bases: airflow.timetables.simple._TrivialTimetable

Timetable that schedules the execution once as soon as possible.

This corresponds to schedule_interval="@once".

summary[source]
next_dagrun_info(self, *, last_automated_data_interval: Optional[DataInterval], restriction: TimeRestriction)[source]

Was this entry helpful?