├── .gitignore ├── README.md └── castor ├── config_files └── init_castor_dag.yaml ├── dag_factory ├── __init__.py └── dag_factory.py ├── interface.py ├── operator_factory ├── __init__.py └── airflow_operator_factory.py └── task_creator ├── __init__.py ├── strategies ├── dummy_operator_strategy.py ├── py_scripts │ └── print_params.py └── python_operator_strategy.py ├── task_creator.py └── task_strategy.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/README.md -------------------------------------------------------------------------------- /castor/config_files/init_castor_dag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/config_files/init_castor_dag.yaml -------------------------------------------------------------------------------- /castor/dag_factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /castor/dag_factory/dag_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/dag_factory/dag_factory.py -------------------------------------------------------------------------------- /castor/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/interface.py -------------------------------------------------------------------------------- /castor/operator_factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /castor/operator_factory/airflow_operator_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/operator_factory/airflow_operator_factory.py -------------------------------------------------------------------------------- /castor/task_creator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /castor/task_creator/strategies/dummy_operator_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/task_creator/strategies/dummy_operator_strategy.py -------------------------------------------------------------------------------- /castor/task_creator/strategies/py_scripts/print_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/task_creator/strategies/py_scripts/print_params.py -------------------------------------------------------------------------------- /castor/task_creator/strategies/python_operator_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/task_creator/strategies/python_operator_strategy.py -------------------------------------------------------------------------------- /castor/task_creator/task_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/task_creator/task_creator.py -------------------------------------------------------------------------------- /castor/task_creator/task_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castor-team/airflow-castor/HEAD/castor/task_creator/task_strategy.py --------------------------------------------------------------------------------