├── .gitignore ├── README.md └── airflow_home ├── airflow.cfg ├── dags ├── hello_world.py └── test_operators.py ├── plugins └── my_operators.py └── unittests.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /airflow_home/airflow.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/airflow_home/airflow.cfg -------------------------------------------------------------------------------- /airflow_home/dags/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/airflow_home/dags/hello_world.py -------------------------------------------------------------------------------- /airflow_home/dags/test_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/airflow_home/dags/test_operators.py -------------------------------------------------------------------------------- /airflow_home/plugins/my_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/airflow_home/plugins/my_operators.py -------------------------------------------------------------------------------- /airflow_home/unittests.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postrational/airflow_tutorial/HEAD/airflow_home/unittests.cfg --------------------------------------------------------------------------------