Skip to content

Validate_email verify if an email address is valid and really exists

License

Notifications You must be signed in to change notification settings

Libardo1/sbo_validate_email

 
 

Repository files navigation

sbo_validate_email

sbo_validate_email is a package for Python that check if an email is valid, properly formatted and really exists.

Dependency

For checking the domain mx and verifying email exits you must have the pyDNS package installed:

pip install pyDNS

USAGE

Basic usage:

from sbo_validate_email import validate_email
is_valid = validate_email('[email protected]')

Checking domain has mx record

Check if the host has SMTP Server:

from validate_email import validate_email
is_valid = validate_email('[email protected]',check_mx=True)

Releasing a new egg

To upload a new nest egg to our internal PyPI repository (after you've incremented the version number and updated the changelog file):

$ python setup.py sdist upload -r internal

More information and setup steps can be found :doc:`here <internal-pypi>`.

About

Validate_email verify if an email address is valid and really exists

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%