└── dags ├── __init__.py ├── example_bash_operator.py ├── example_branch_operator.py ├── example_http_operator.py ├── example_python_operator.py ├── example_short_circuit_operator.py ├── example_xcom.py └── tutorial.py /dags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dags/example_bash_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/example_bash_operator.py -------------------------------------------------------------------------------- /dags/example_branch_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/example_branch_operator.py -------------------------------------------------------------------------------- /dags/example_http_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/example_http_operator.py -------------------------------------------------------------------------------- /dags/example_python_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/example_python_operator.py -------------------------------------------------------------------------------- /dags/example_short_circuit_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/example_short_circuit_operator.py -------------------------------------------------------------------------------- /dags/example_xcom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/example_xcom.py -------------------------------------------------------------------------------- /dags/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trbs/airflow-examples/HEAD/dags/tutorial.py --------------------------------------------------------------------------------