Skip to content
airflow-cron
v0.1.0
Toggle navigation menu
⌘
K
airflow-cron
v0.1.0
/
API reference
/
airflow_cron.CronSchedule
airflow_cron.CronSchedule
¶
pydantic
model
airflow_cron.
CronSchedule
[source]
¶
Bases:
BaseModel
Five-field Vixie/Cronie schedule.
field
minute
:
str
|
int
=
'*'
¶
field
hour
:
str
|
int
=
'*'
¶
field
day_of_month
:
str
|
int
=
'*'
¶
field
month
:
str
|
int
=
'*'
¶
field
day_of_week
:
str
|
int
=
'*'
¶
to_cron
(
)
→
str
[source]
¶
classmethod
from_cron
(
expression
:
str
)
→
Self
[source]
¶