mailcheck
v1.0.0
python包装器MailCheck.ai API
pip install mailcheck from mailcheck import MailCheckClient没有API密钥:
client = MailCheckClient ()使用API密钥(适用于Pro Plan用户):
client = MailCheckClient ( YOUR_MAILCHECK . AI_API_KEY ) response = client . check_domain ( 'google.com' )
print ( response )输出:
{
' status ' : 200,
' domain ' : ' google.com ' ,
' mx ' : True,
' disposable ' : False,
' public_domain ' : False,
' did_you_mean ' : None
} response = client . check_email ( '[email protected]' )
print ( response )输出:
{
' status ' : 200,
' email ' : ' [email protected] ' ,
' domain ' : ' microsoft.com ' ,
' mx ' : True,
' disposable ' : False,
' public_domain ' : False,
' alias ' : False,
' did_you_mean ' : None
}