Implement transformations and generate formatted csv file#28
Open
saipraneeth0318 wants to merge 2 commits intoHedgeApple:masterfrom
Open
Implement transformations and generate formatted csv file#28saipraneeth0318 wants to merge 2 commits intoHedgeApple:masterfrom
saipraneeth0318 wants to merge 2 commits intoHedgeApple:masterfrom
Conversation
Author
ETL Homework SolutionThis repository contains an ETL (Extract, Transform, Load) solution designed to read data from a homework.csv file, transform it, and then save the results to a formatted.csv file. Table of ContentsDescriptionThis ETL solution aims to streamline the process of reading, transforming, and saving CSV data. Through this framework, users can seamlessly process Project Structure
Setup and Execution1. Clone the Repositorygit clone https://github.com/saipraneeth0318/etl_homework.git
cd etl_homework
## Install Dependencies
Before running the script, install the required Python libraries:
```bash
pip install -r requirements.txt
## Run the ETL Script
Execute the `etl_solution.py` script:
```bash
python etl_solution.py
After execution, check the repository for the `formatted.csv` file, containing the processed data.
## Configuration
For any necessary adjustments to the ETL settings or parameters, modify the `etl_conf.json` file accordingly. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As I have implemeted transformations and generated formatted.csv file as per my understanding. Please review the code changes and let me know if anything missing.