Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alxpereira/emailchecker
A simple Python script to validate your emails in a csv database
https://github.com/alxpereira/emailchecker
Last synced: 1 day ago
JSON representation
A simple Python script to validate your emails in a csv database
- Host: GitHub
- URL: https://github.com/alxpereira/emailchecker
- Owner: alxpereira
- Created: 2015-09-24T14:50:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-24T14:52:03.000Z (about 9 years ago)
- Last Synced: 2023-04-23T03:13:13.194Z (over 1 year ago)
- Language: Python
- Size: 121 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EmailChecker
A simple CSV email verifier that checks if an email exists.### Version
1.0.0### Installation
You need to install pip in order to get the dependencies
https://pip.pypa.io/en/stable/installing/Then install the dependencies :
```sh
$ pip install pyDNS
$ pip install validate_email
```### Usage
To use the Email Checker script, make sure that your email list is in CSV format and the emails on the 1st column, as in the example.csv file
Then just run it :
```sh
$ ./checkem.py yourfile.csv
```This will produce a yourfile_export.csv output with the result of the analysis !
And your done !### Tech
Email Checker uses the following techs :
* [Python] - the first basic language
* [pip] - the best package library for Python
* [pyDNS] - DNS queries for dummies
* [validate_email] - email validator library### Todo's
- Better management of the export
- MX domains checkLicense
----WTFPL (Do What the Fuck You Want to Public License) 2004
(Copyleft) 2015 - Alexandre Pereira
**Free Software, Hell Yeah!**
[Python]:https://www.python.org
[pip]:https://pip.pypa.io/en/stable/
[pyDNS]:http://pydns.sourceforge.net/
[validate_email]:https://github.com/syrusakbary/validate_email