A simple Python script to separate multiple email addresses stored in a single cell of an Excel file.
✅ Extracts multiple emails from a single cell.
✅ Validates email addresses.
✅ Allows user correction for invalid emails.
✅ Saves a new modified Excel file.
- Clone the repository:
git clone https://github.com/riteshkarmakar/email-separator.git
cd email_separator
- Install dependencies:
pip install -r requirements.txt
Run the script and follow the prompts:
python email_separator.py
Name | Emails |
---|---|
John Doe | [email protected], [email protected] |
Alice | [email protected] / [email protected] |
Ram | [email protected] ;[email protected] |
Name | Emails |
---|---|
John Doe | [email protected] |
John Doe | [email protected] |
Alice | [email protected] |
Alice | [email protected] |
Ram | [email protected] |
Ram | [email protected] |
This project is licensed under the MIT License.
- Developed by Ritesh Karmakar
- Inspired by real-world data cleaning challenges.