nuwa/dev/: verify-email-2.4.3.1 metadata and description

Homepage Simple index PyPI page

A small package for email verification

author Kumar Akshay
author_email k.akshay9721@gmail.com
classifiers
  • Programming Language :: Python :: 3.7
  • License :: OSI Approved :: MIT License
  • Operating System :: OS Independent
description_content_type text/markdown
requires_dist
  • aiosmtpd
  • aiodns
File Tox results History
verify_email-2.4.3.1-py3-none-any.whl
Size
5 KB
Type
Python Wheel
Python
3
  • Uploaded to nuwa/dev by nuwa 2024-05-07 17:31:50

verify-email

verify-email can verify any email address by efficiently checking the domain name and pinging the handler to verify its existence.

Features

Compatibility

Installation

From pypi.org

$ pip install verify-email

From source code

$ git clone https://github.com/kakshay21/verify_email
$ cd verify_email
$ virtualenv env
$ source env/bin/activate
$ python setup.py develop

Usage

>>> from verify_email import verify_email
>>> verify_email('foo@bar.com')
False
>>> verify_email(['foo@bar.com', 'example@foo.com'])
[False, False]

Also, note that some emails will likely fail in validation, if so you can check the reason of failure using debug flag.

>>> from verify_email import verify_email
>>> verify_email('foo@bar.com', debug=True)

see for more examples examples.py

Contribute

Support

If you are having issues, please create an issue for it. And feel free to contribute as well 😄.