├── .gitignore ├── Airflow ├── chapter7_insideairbnb.py ├── dagIF.py ├── dags │ └── genesis_dag.py └── docker-compose.yaml ├── README.md ├── Tips, enlaces y herramientas ├── README.md └── image │ ├── airflow 2.PNG │ ├── apache airflow quick start_MarcLamberti.jfif │ ├── crontab.PNG │ └── integraciones.PNG └── data-pipelines-with-Apache-Airflow_(book) ├── chapter01_Meet-Apache-Airflow.md ├── chapter02_Anatomy-of-an-Airflow-DAG.md ├── chapter03_Scheduling-in-Airflow.md └── chapter04_Templating-tasks-using-the-Airflow-context.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/.gitignore -------------------------------------------------------------------------------- /Airflow/chapter7_insideairbnb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Airflow/chapter7_insideairbnb.py -------------------------------------------------------------------------------- /Airflow/dagIF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Airflow/dagIF.py -------------------------------------------------------------------------------- /Airflow/dags/genesis_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Airflow/dags/genesis_dag.py -------------------------------------------------------------------------------- /Airflow/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Airflow/docker-compose.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/README.md -------------------------------------------------------------------------------- /Tips, enlaces y herramientas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Tips, enlaces y herramientas/README.md -------------------------------------------------------------------------------- /Tips, enlaces y herramientas/image/airflow 2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Tips, enlaces y herramientas/image/airflow 2.PNG -------------------------------------------------------------------------------- /Tips, enlaces y herramientas/image/apache airflow quick start_MarcLamberti.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Tips, enlaces y herramientas/image/apache airflow quick start_MarcLamberti.jfif -------------------------------------------------------------------------------- /Tips, enlaces y herramientas/image/crontab.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Tips, enlaces y herramientas/image/crontab.PNG -------------------------------------------------------------------------------- /Tips, enlaces y herramientas/image/integraciones.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DataEngineering-LATAM/Airflow-StudyClub/HEAD/Tips, enlaces y herramientas/image/integraciones.PNG -------------------------------------------------------------------------------- /data-pipelines-with-Apache-Airflow_(book)/chapter01_Meet-Apache-Airflow.md: -------------------------------------------------------------------------------- 1 | Meet Apache -------------------------------------------------------------------------------- /data-pipelines-with-Apache-Airflow_(book)/chapter02_Anatomy-of-an-Airflow-DAG.md: -------------------------------------------------------------------------------- 1 | anatomu of an airflow DAG -------------------------------------------------------------------------------- /data-pipelines-with-Apache-Airflow_(book)/chapter03_Scheduling-in-Airflow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data-pipelines-with-Apache-Airflow_(book)/chapter04_Templating-tasks-using-the-Airflow-context.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------