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)
Must Try
Project By Regem Enteprises
Top comments (2)
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?
I simplified it.