Project 2

etl_project/├── config/│ ├── base_config.json # Static environment configurations│ ├── product_configs/ # Individual configs for each program│ │ ├── pl_cibil750.json├── control/│ ├── control_table_setup.sql # SQL to create the control table│ └──...

Project 1

# Project Structure # etl_project/ # ├── config # │ ├── config.json # │ └── logging.conf # ├── data # │ ├── input # │ │ ├── customer_data.csv # │ └── output # │ ├── eligible_customers.csv # │ └── log_data.csv # ├── etl # │ ├── etl.py # ├── logging # │ └── logger.py #...