├── .gitignore ├── README.md ├── csv_files ├── churn_modelling.csv ├── df_creditscore.csv ├── df_exited_age_correlation.csv └── df_exited_salary_correlation.csv ├── dags └── airflow_dag.py └── python_scripts ├── create_df_and_modify.py ├── requirements.txt ├── write_csv_to_postgres.py └── write_df_to_postgres.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/README.md -------------------------------------------------------------------------------- /csv_files/churn_modelling.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/csv_files/churn_modelling.csv -------------------------------------------------------------------------------- /csv_files/df_creditscore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/csv_files/df_creditscore.csv -------------------------------------------------------------------------------- /csv_files/df_exited_age_correlation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/csv_files/df_exited_age_correlation.csv -------------------------------------------------------------------------------- /csv_files/df_exited_salary_correlation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/csv_files/df_exited_salary_correlation.csv -------------------------------------------------------------------------------- /dags/airflow_dag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/dags/airflow_dag.py -------------------------------------------------------------------------------- /python_scripts/create_df_and_modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/python_scripts/create_df_and_modify.py -------------------------------------------------------------------------------- /python_scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/python_scripts/requirements.txt -------------------------------------------------------------------------------- /python_scripts/write_csv_to_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/python_scripts/write_csv_to_postgres.py -------------------------------------------------------------------------------- /python_scripts/write_df_to_postgres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dogukannulu/csv_extract_airflow_docker/HEAD/python_scripts/write_df_to_postgres.py --------------------------------------------------------------------------------