python-email-validator
python-email-validator copied to clipboard
A robust email syntax and deliverability validation library for Python.
in `validate_email`, the result of the following deliverability check is always : `{'unknown-deliverability': 'timeout'}` for this call: ``` from .deliverability import validate_email_deliverability deliverability_info = validate_email_deliverability( ret.ascii_domain, ret.domain, timeout, dns_resolver )...
Hi, I've just added your project in our Awesome List of Opensource Email Resources https://github.com/Mindbaz/awesome-opensource-email/blob/main/README.md#email-verification Bye
I checked '[email protected]' (username and domain do not exist) with 'check_deliverability=True' and no error occurs.
Hi Josh, I’m currently using the `email-validator` package for a model in FastAPI to validate email addresses. However, when deploying the code inside a Docker container, I encounter the following...
I maintain a high-volume lead-gen API that validates thousands of emails per request. To keep latency low, we can’t rely on the library’s check_deliverability=True option because it triggers blocking DNS...
`self.mx` does not work.
This decision will result into a nightmare: • The library no longer checks that the local part is at most 64 characters because a more careful reading of RFC 5321...
When emails contain unicode characters that look similar to ascii characters, an attack vector is possible anytime we display the unicode email as an identifier of a user without [punycode](https://en.wikipedia.org/wiki/Punycode)...