Files
airflow-dags/.history/testfolder/testhello_20250904110130.py
Выдрин Сергей f4fefd6c5b f
2025-09-05 16:05:35 +03:00

9 lines
304 B
Python

from airflow import DAG
from airflow.operators.python import PythonOperator
from datetime import datetime
def hello():
print("Hello Airflow!")
with DAG("hello_world", start_date=datetime(2025, 9, 4), schedule_interval="@once") as dag:
t1 = PythonOperator(task_id="hello", python_callable=hello)