Skip to content

Latest commit

 

History

History
73 lines (54 loc) · 974 Bytes

README.md

File metadata and controls

73 lines (54 loc) · 974 Bytes

mailcheck

Python wrapper for the MailCheck.ai API

Installation

pip install mailcheck

Usage

Import package

from mailcheck import MailCheckClient

Instantiate client

Without API key:

client = MailCheckClient()

With API key (for Pro plan users):

client = MailCheckClient(YOUR_MAILCHECK.AI_API_KEY)

Check domain name

response = client.check_domain('google.com')
print(response)

Output:

{
    'status': 200,
    'domain': 'google.com',
    'mx': True,
    'disposable': False,
    'public_domain': False,
    'did_you_mean': None
}

Check email address

response = client.check_email('[email protected]')
print(response)

Output:

{
    'status': 200,
    'email': '[email protected]',
    'domain': 'microsoft.com',
    'mx': True,
    'disposable': False,
    'public_domain': False,
    'alias': False,
    'did_you_mean': None
}