Convert python script to Airflow PythonOperator(s)
问题 I have a working python script with runs from CronJob. I want to convert it to DAG with PythonOperator(s) as we now are converting to Airflow. Say that I have functions: a(),b(),c(),d() And their execution order is : a->b->c->d Lets say that the function codes are: def a(): print("Happy") def b(): print("Birthday") def c(): print("to") def d(): print("you!") ** This is just an example my code for all functions is more complex I have this DAG: args = { 'owner': 'airflow', 'start_date': airflow