A simple ETL (Extract, Transform, Load) framework in Python.
This project provides a basic framework for ETL processes, including modules for data loading, transforming, and sinking. It is designed to be easily extensible for different types of data sources and destinations.
Clone the repository:
git clone https://github.com/yourusername/my_etl_project.git cd my_etl_projectCreate and activate a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
Install the dependencies:
pip install -r requirements.txt
To run the ETL process, execute the main.py script:
python exmaples/main.py