Closed roberthandiwijaya closed 1 year ago
i think it is because the verify_email on pypi version still on 2.4.3
I think this message you're getting from Google smtp server. They have mechanism these days which can blacklist certain requests from making multiple verify requests.
I don't think it's related to 2.4.3 version.
You could check by installing pip3 install verify-email==2.4.4.dev0
from verify_email import verify_email
def is_valid_email(address):
return verify_email(address, debug=True)
print(is_valid_email("some_email@gmail.com"))
2022-12-17 17:07:05,854 - verify_email - DEBUG -
2022-12-17 17:07:05,854 - verify_email - DEBUG -
False
@konrad888 isn't the expected result? Feel free to reopen if you think it's a different issue.
2022-10-21 15:17:24,753 - verify_email - DEBUG - Server does not permit verify user, host=gmail-smtp-in.l.google.com, priority=5, ttl=-1 disconnected.
Problem when using print(verify_email('test@gmail.com', debug=True))