This simple Python project allows users to load a massive CSV file, select specific columns to save, and rename those columns before saving them as a new CSV file. It uses the polars
library for handling CSV data and tkinter
for the graphical user interface.
- Load a massive CSV file and display its columns.
- Select columns to save to a new CSV file.
- Rename selected columns.
- Python 3.x
-
Clone the repository:
git clone https://github.com/r4v3nz/CSVulture.git cd CSVulture
-
Install the required Python packages:
pip install -r requirements.txt
-
Run the application:
python app.py
-
Use the file dialog to select a CSV file to load.
-
Select the columns you want to save by checking the checkboxes next to each column name.
-
Enter new names for the selected columns in the text fields.
-
Click the "Save" button to choose a location to save the new CSV file.