File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- email\_ validator
2- ================
1+ email-validator: Validate Email Addresses
2+ =========================================
33
44A robust email address syntax and deliverability validation library for
5- Python 2.7/3.4+ by [ Joshua Tauberer] ( https://razor.occams.info ) .
5+ Python 2.7/3.4+ by [ Joshua Tauberer] ( https://joshdata.me ) .
66
7- This library validates that a string is of the form ` x@y .com` . This is
7+ This library validates that a string is of the form ` name@example .com` . This is
88the sort of validation you would want for an email-based login form on
99a website.
1010
1111Key features:
1212
13- * Good for validating email addresses used for logins/identity.
14- * Friendly error messages when validation fails (appropriate to show
13+ * Checks that an email address has the correct syntax --- good for
14+ login forms or other uses related to identifying users.
15+ * Gives friendly error messages when validation fails (appropriate to show
1516 to end users).
1617* (optionally) Checks deliverability: Does the domain name resolve?
1718* Supports internationalized domain names and (optionally)
@@ -37,7 +38,7 @@ Installation
3738This package [ is on PyPI] ( https://pypi.org/project/email-validator/ ) , so:
3839
3940``` sh
40- pip install email_validator
41+ pip install email-validator
4142```
4243
4344` pip3 ` also works.
Original file line number Diff line number Diff line change 44from codecs import open
55
66setup (
7- name = 'email_validator ' ,
7+ name = 'email-validator ' ,
88 version = '1.1.1' ,
99
1010 description = 'A robust email syntax and deliverability validation library for Python 2.x/3.x.' ,
You can’t perform that action at this time.
0 commit comments