Transforming data into a new shape. Pre-processing and conversion of Excel to Structured DB.
A web app to convert MS-Excel/CSV data into a structured database-ready format and pre-process existing structured data (cleaning, renaming, splitting/joining columns, handling missing data, etc.).
- Upload CSV or XLSX files.
- Two main modes:
- Convert to Structured Data β flatten nested JSON-like fields, ready for DB ingestion.
- Pre-process Data β rich operations:
- Capitalize/normalize column names
- Strip whitespace in headers/cells
- Handle encoding errors
- Rename columns via map or regex
- Handle missing values (fill/drop)
- Remove duplicates
- Split or join columns
- No persistent storage; files processed in-memory for security.
git clone https://github.com/vaagdevi210/DataMorph.git
cd <repo>
docker compose up --build
Frontend: http://localhost:3000
Backend API: http://localhost:8000
## **Local Deployment**
Backend
cd backend
pip install -r requirements.txt
uvicorn server:app --reload --port 8000
Frontend
cd frontend
npm install
npm start