File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 1
- email\_ validator
2
- ================
1
+ email-validator: Validate Email Addresses
2
+ =========================================
3
3
4
4
A 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 ) .
6
6
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
8
8
the sort of validation you would want for an email-based login form on
9
9
a website.
10
10
11
11
Key features:
12
12
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
15
16
to end users).
16
17
* (optionally) Checks deliverability: Does the domain name resolve?
17
18
* Supports internationalized domain names and (optionally)
@@ -37,7 +38,7 @@ Installation
37
38
This package [ is on PyPI] ( https://pypi.org/project/email-validator/ ) , so:
38
39
39
40
``` sh
40
- pip install email_validator
41
+ pip install email-validator
41
42
```
42
43
43
44
` pip3 ` also works.
Original file line number Diff line number Diff line change 4
4
from codecs import open
5
5
6
6
setup (
7
- name = 'email_validator ' ,
7
+ name = 'email-validator ' ,
8
8
version = '1.1.1' ,
9
9
10
10
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