EmailVerifier is a Python script that allows you to verify email addresses from a list of text files. It performs the following steps:
- Read Files: The script reads a list of text files containing email addresses.
- Ignore Non-Email Lines: It processes each file, ignoring lines that do not contain valid email addresses.
- Verify Emails: The script verifies the validity of each email address and filters out invalid ones.
- Save Output: It saves the verified and cleaned email addresses to an output file.
Make sure you have Python 3.x installed on your system. You can download Python from python.org.
-
Clone this repository to your local machine:
git clone https://github.com/BaseMax/EmailVerifier.git
-
Change to the project directory:
cd EmailVerifier
-
Install the required dependencies using pip:
pip install -r requirements.txt
You can run the EmailVerifier script with the following command:
python email_verifier.py input.txt output.txt
Replace input.txt
with the path to your input text file containing email addresses and output.txt
with the desired output file name.
Let's assume you have a file named input.txt
with the following content:
[email protected]
invalid_email
[email protected]
[email protected]
Running the script:
python email_verifier.py input.txt verified_emails.txt
After the script execution, the verified_emails.txt file will contain the verified and cleaned email addresses:
This project is licensed under the GPL-3.0 License - see the LICENSE file for details.
If you have any questions or feedback, please feel free to open an issue.
Happy verifying!
Copyright 2023, Max Base