Created
June 7, 2021 06:32
-
-
Save nickefy/adc9544c9033e07b9ec63858af72785f to your computer and use it in GitHub Desktop.
sample DAG file for Airflow Framework
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from airflow import DAG | |
from operators.create_dag_operator import CreateDagOperator | |
default_dag_args = { | |
'owner': 'airflow', | |
} | |
dag = CreateDagOperator.create_dag('Hello_world',default_dag_args) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment