DEV Community

Vinay Chaudhary
Vinay Chaudhary

Posted on

Python Email Validation

Hello guys,

Meet PWValid - it is a powerful and very simple Python package to validate and check emails. It helps developers tackle spam and disposable emails.

PIP Command: pip install pwvalid
PYPI Link : PWValid

import pwvalid 
email = input('Enter Email:')
result = pwvalid.isSpam(email)
print(result)
Enter fullscreen mode Exit fullscreen mode

Must Try

Project By Regem Enteprises

Top comments (2)

Collapse
 
phlash profile image
Phil Ashby

Hi Vinay, you appear to have written a simple wrapper around the eva.pingutil.com/ API? It might be a good idea to mention this here and in your documentation, as folks probably need to know if all their email addresses are getting shipped off somewhere!

I'm also a little confused since Pingutils already provide an example Python wrapper for their service.. why create another one?

Collapse
 
vinayofc profile image
Vinay Chaudhary

I simplified it.