Skip to content

Web-based service for Email address verification based on Python+Flask

Notifications You must be signed in to change notification settings

dfj3302695/python-bulk-email-verifier

 
 

Repository files navigation

python-bulk-email-verifier

Web-based service for Email address verification based on Python+Flask

UI example

This is how initial upload to the tool looks like image And this is progress monitor image

Installation

You'll need GIT to download source

sudo apt-get update && sudo apt-get install git

After that run

cd /var/www
git clone https://github.com/danbok/python-bulk-email-verifier/
sudo chown www-data -R python-bulk-email-verifier

and

cd python-bulk-email-verifier
sh install.sh

vhost content

WSGIDaemonProcess verifier user=www-data group=www-data threads=5
WSGIScriptAlias / /var/www/python-bulk-email-verifier/verifier.wsgi

<Directory /var/www/python-bulk-email-verifier/>
    WSGIScriptReloading On
    WSGIProcessGroup verifier
    WSGIApplicationGroup %{GLOBAL}
    Order deny,allow
    Allow from all
</Directory>

To start the tool, run

nohup celery worker -A verifier_app.tasks --loglevel=INFO --concurrency=12 --purge > celery.out &

About

Web-based service for Email address verification based on Python+Flask

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 61.8%
  • HTML 33.6%
  • Shell 4.5%
  • CSS 0.1%