├── .gitignore ├── README.md ├── app.py ├── batch.py ├── conf ├── nginx.conf └── supervisord.conf ├── config.yaml ├── event.json ├── models.py ├── requirements.txt ├── service.py ├── static ├── ladda-themeless.min.css ├── ladda.min.js ├── script.js ├── spin.min.js └── style.css ├── supervisord.pid ├── templates └── index.html └── validate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/app.py -------------------------------------------------------------------------------- /batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/batch.py -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/conf/supervisord.conf -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/config.yaml -------------------------------------------------------------------------------- /event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/event.json -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/requirements.txt -------------------------------------------------------------------------------- /service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/service.py -------------------------------------------------------------------------------- /static/ladda-themeless.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/static/ladda-themeless.min.css -------------------------------------------------------------------------------- /static/ladda.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/static/ladda.min.js -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/static/script.js -------------------------------------------------------------------------------- /static/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/static/spin.min.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/static/style.css -------------------------------------------------------------------------------- /supervisord.pid: -------------------------------------------------------------------------------- 1 | 20246 2 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/templates/index.html -------------------------------------------------------------------------------- /validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skulltech/validate-email-bulk/HEAD/validate.py --------------------------------------------------------------------------------