This file contains hidden or 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
| #!/usr/bin/python3 | |
| from airflow.models import DAG | |
| from airflow.operators.bash_operator import BashOperator | |
| from datetime import datetime, timedelta | |
| # let's setup arguments for our dag | |
| my_dag_id = "my_first_dag" | |
| default_args = { |