Email Validator
-
Validate Email Addresses easily by using web requests(
GETand passingemailparamater) -
Additional Information: Click Here
Available Routes
| Route | Parameters | Information |
|---|---|---|
| /api | email (the email address) | return the results |
Installing the Web Server
Arch Linux
run the commands below, line by line
sudo pacman -Syyuu --noconfirm
sudo pacman -S git python python-pip --noconfirm
cd ~
git clone https://github.com/hirusha-adi/Email-Validator.git
cd Email-Validator
pip3 install -r requirements.txt
python3 validator.py # to start the web app
# CTRL + Z
# bg
# disown -h
Ubuntu/Debian
run the commands below, line by line
sudo apt install && sudo apt upgrade -y
sudo apt install git python3 python3-pip -y
cd ~
git clone https://github.com/hirusha-adi/Email-Validator.git
cd Email-Validator
pip3 install -r requirements.txt
python3 validator.py # to start the web app
# CTRL + Z
# bg
# disown -h
Windows
- Download and install Python3. Make sure to ‘Add to PATH’ when install python3

- Download the code as a .zip file from this Github Reposotory

(this above image might not be the same)
- Extract the downloaded
.zipfile - open
cmdin that folder - run
pip install -r requirements.txt - run
python validator.pyto start the web app