Email validator that uses regex pattern, blacklisted domain check, and optional SMTP verification to confirm deliverability. Current version 1.0.5.post2. Released sporadically; last release in 2021.
pip install py3-validate-emailVerified import paths — ran on the pinned version, not inferred.
Basic usage with default settings (only regex check).
Use 'from validate_email import validate_email'.
Enable SMTP check by passing smtp_check=True.
Always pass smtp_check=True if you want SMTP verification.
Use SMTP check as a hint, not a definitive test; implement retries.
Run: pip install py3-validate-email then use: from validate_email import validate_email
Use: validate_email('user@example.com')Provide valid from_domain and credentials for SMTP check, or disable smtp_check.