Emailvalidation Python Client is the official Python Wrapper around the Emailvalidation API.
Install from pip:
pip install emailvalidationInstall from code:
pip install git+https://github.com/everapihq/emailvalidation-python.gitAll emailvalidation API requests are made using the Client class. This class must be initialized with your API access key string. Where is my API access key?
In your Python application, import emailvalidation and pass authentication information to initialize it:
import emailvalidation
client = emailvalidation.Client('API_KEY')print(client.status())https://emailvalidation.io/docs/info
result = client.info('john@doe.com')
# result = client.info('john@doe.com', catch_all=1)
print(result)Any feedback? Please feel free to contact our team.