Metadata-Version: 2.1
Name: pyemailval
Version: 0.3
Summary: pyemailval verifies if an email address really exists.
Home-page: http://github.com/ben-baert/pyemailval
Author: Ben Baert
Author-email: ben_b@gmx.com
License: LGPL
Download-URL: http://github.com/ben-baert/pyemailval/archive/0.1.tar.gz
Keywords: email validation verification mx verify
Platform: UNKNOWN

==============
pyemailval
==============

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



INSTALLATION
============

You can install the package with pip:

    pip install pyemailval


USAGE
=====

Basic usage::

    from pyemailval import validate_email
    is_valid = validate_email('example@example.com', check_regex=True, check_mx=True)

check_regex will check will the email address has a valid structure and defaults to True
check_mx will check the mx-records and check whether the email actually exists


TODOs and BUGS
==============
See: http://github.com/Ben-Baert/pyemailval/issues


