DEV Community

Vinay Chaudhary
Vinay Chaudhary Subscriber

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
 
vinayofc profile image
Vinay Chaudhary

I simplified it.