def auto_create_dag():
    dag_list=[]
    dag = DAG()
    dag_list.append(dag)
    return dag_list
dags = auto_create_dag()
for dag in dags:
    globals()[dag.dag_id] = dag

转载自:https://zhuanlan.zhihu.com/p/97525893

相关文章:

  • 2021-06-09
  • 2022-12-23
  • 2021-08-12
  • 2022-12-23
  • 2021-10-13
  • 2021-07-05
  • 2021-08-06
猜你喜欢
  • 2021-08-30
  • 2021-07-29
  • 2022-12-23
  • 2021-11-13
  • 2021-12-21
  • 2021-07-16
  • 2022-12-23
相关资源
相似解决方案