我曾经使用emailveriefer
发出请求,但没有得到任何答案。只是卡住了:
@bot.message_handler(commands = ['verificator'])
def first_part(message):
request = bot.reply_to(message , 'Type an e-mail:')
@bot.message_handler(content_types = ['text'])
def second_part(message):
try:
data = client.get(request)
bot.reply_to(message , data.email_address)
bot.reply_to(message , "Format: ")
bot.reply_to(message , str(data.format_check))
bot.reply_to(message , "DNS: ")
bot.reply_to(message , str(data.dns_check))
bot.reply_to(message , "Free: ")
bot.reply_to(message , str(data.free_check))
bot.reply_to(message , "Last audit date: ")
bot.reply_to(message , str(data.audit.audit_updated_date))
except exceptions.HttpException:
pass
except exceptions.GeneralException:
pass
except exceptions.UndefinedVariableException:
pass
except exceptions.InvalidArgumentException:
pass
except:
pass
我希望得到任何输出,但是什么也没得到。 那是问题