From f4fefd6c5b7a21a237fe0e4479bcbe495f60b1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D1=8B=D0=B4=D1=80=D0=B8=D0=BD=20=D0=A1=D0=B5=D1=80?= =?UTF-8?q?=D0=B3=D0=B5=D0=B9?= Date: Fri, 5 Sep 2025 16:05:35 +0300 Subject: [PATCH] f --- .history/testfolder/testhello_20250904110130.py | 9 +++++++++ .history/testfolder/testhello_20250905160425.py | 9 +++++++++ testfolder/testhello.py | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .history/testfolder/testhello_20250904110130.py create mode 100644 .history/testfolder/testhello_20250905160425.py diff --git a/.history/testfolder/testhello_20250904110130.py b/.history/testfolder/testhello_20250904110130.py new file mode 100644 index 0000000..6cff5d1 --- /dev/null +++ b/.history/testfolder/testhello_20250904110130.py @@ -0,0 +1,9 @@ +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) \ No newline at end of file diff --git a/.history/testfolder/testhello_20250905160425.py b/.history/testfolder/testhello_20250905160425.py new file mode 100644 index 0000000..3e934d2 --- /dev/null +++ b/.history/testfolder/testhello_20250905160425.py @@ -0,0 +1,9 @@ +from airflow import DAG +from airflow.operators.python import PythonOperator +from datetime import datetime + +def hello(): + print("Hello Airflow!") + +with DAG("hello_world_folder", start_date=datetime(2025, 9, 4), schedule_interval="@once") as dag: + t1 = PythonOperator(task_id="hello", python_callable=hello) \ No newline at end of file diff --git a/testfolder/testhello.py b/testfolder/testhello.py index 6cff5d1..3e934d2 100644 --- a/testfolder/testhello.py +++ b/testfolder/testhello.py @@ -5,5 +5,5 @@ from datetime import datetime def hello(): print("Hello Airflow!") -with DAG("hello_world", start_date=datetime(2025, 9, 4), schedule_interval="@once") as dag: +with DAG("hello_world_folder", start_date=datetime(2025, 9, 4), schedule_interval="@once") as dag: t1 = PythonOperator(task_id="hello", python_callable=hello) \ No newline at end of file