[프로그래머스] 데이터 엔지니어링 데브코스 3기/TIL(Today I Learn)
[TIL - 43일 차] 데이터 파이프라인과 Airflow (3)
Airflow DAG 작성 - Hello WorldHello world 예제 프로그램 살펴보기PythonOperatorfrom airflow import DAGfrom airflow.operators.python import PythonOperatorfrom datetime import datetimedag = DAG( dag_id = 'HelloWorld', start_date = datetime(2022,5,5), catchup=False, tags=['example'], schedule = '0 2 * * *')def print_hello(): print("hello!") return "hello!"def print_goodbye(): print("good..