No banner uploaded

Chef mimi's Data Cleaning Pipeline

3 devlogs
2h 11m 33s

This is my first project on Flavortown. I’m excited to share my progress! I am making Data Cleaning Pipeline where users will upload their pdf,csv or excel and my website will clean it for them :”)

aneezakiran07

I’ve built a Streamlit UI that lets you upload a CSV and instantly clean it by dropping duplicate rows/columns and stripping extra spaces from text. User will choose what functions he want to run using the provided buttons. I already pushed the code for these three core functions and added a data preview so you can see the results immediately. For the next session, I’m moving on to removing special characters and fixing missing values.

Attachment
Attachment
0
aneezakiran07

I spent an hour setting up a Streamlit interface to handle the tedious parts of data cleaning. I wrote three core functions that take any uploaded CSV and automatically fix it: one to strip hidden whitespaces from text, one to drop duplicate rows, and a third to find and remove identical columns. The goal was to make something generic so I don’t have to manually clean files every time I start a new project. It’s simple, fast, and handles the “dirty” data work in one click.

Attachment
0