A simple Python GUI application that splits email addresses into their username and domain components. Built with tkinter as a learning project.
- Paste one or more email addresses into the text box
- Click "Splice Emails" to separate each address into username and domain
- Results displayed in a table with index, username, and domain columns
- Python 3.x
- tkinter (included with most Python installations)
On Ubuntu/Debian, if tkinter is not installed:
sudo apt install python3-tkgit clone https://github.com/luketfood101/Email_Splicer.git
cd Email_SplicerNo additional dependencies are required.
Run the main application:
python3 email_splicer_code_1.pyOr run the simplified version:
python3 Email_Splicer_Code_2.pyemail_splicer_code_1.py— Full-featured version with listbox UI, scrollbar, and column headersEmail_Splicer_Code_2.py— Simplified rewrite with cleaner parsing logic