Skip to content

Commit d73096e

Browse files
committed
2.3.1 release
1 parent fded502 commit d73096e

File tree

5 files changed

+16
-19
lines changed

5 files changed

+16
-19
lines changed
4.73 KB
Binary file not shown.

dist/verify_email-2.3.1.tar.gz

3.34 KB
Binary file not shown.

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="verify_email",
8-
version="2.3.0dev",
8+
version="2.3.1",
99
author="Kumar Akshay",
1010
author_email="[email protected]",
1111
description="A small package for email verification",
@@ -14,6 +14,7 @@
1414
url="https://github.com/kakshay21/verify_email",
1515
packages=setuptools.find_packages(),
1616
classifiers=(
17+
"Programming Language :: Python :: 3.7",
1718
"Programming Language :: Python :: 2.7",
1819
"License :: OSI Approved :: MIT License",
1920
"Operating System :: OS Independent",

verify_email.egg-info/PKG-INFO

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: verify-email
3-
Version: 2.3.0.dev0
3+
Version: 2.3.1
44
Summary: A small package for email verification
55
Home-page: https://github.com/kakshay21/verify_email
66
Author: Kumar Akshay
@@ -15,13 +15,13 @@ Description: # verify-email
1515
- Syntax checks
1616
- MX(Mail Exchange records) verification
1717
- Handler verification
18-
- Cache domain lookups (For multiple emails)
18+
- Cache domain lookups
1919
- Multithread support (look in [usage.py](https://github.com/kakshay21/verify_email/blob/master/verify_email/usage.py))
20-
- Multiprocess efficient (look in [fast_verify.py](https://github.com/kakshay21/verify_email/blob/master/verify_email/fast_verify.py))
20+
- Multiprocess efficient (not recommended but have a look in [fast_verify.py](https://github.com/kakshay21/verify_email/blob/master/verify_email/fast_verify.py))
2121

2222
## Compatibility
2323
- It is written in Python 2.7.
24-
- Not tested in python3.X.
24+
- Works on Python 3.7.
2525
- It should work on Linux, Mac and Windows.
2626

2727
## Installation
@@ -39,25 +39,21 @@ Description: # verify-email
3939
```
4040

4141
## Usage
42-
### For single email
4342
```
44-
>>> from verify_email.verify_email import validate_email
45-
>>> validate_email("[email protected]", mass=False)
43+
>>> from verify_email import verify_email
44+
>>> verify_email("[email protected]")
4645
False
47-
```
48-
### For multiple emails
49-
```
50-
51-
>>> validate_email(emails, mass=True)
46+
>>> verify_email(["[email protected]", "[email protected]"])
5247
[False, False]
5348
```
54-
### Multithreaded Version (Single/Multiple emails)
49+
### Multithreaded
5550
```
56-
>>> from verify_email.verify_email import fast_validate_email
57-
>>> fast_validate_email("[email protected]", mass=False)
58-
False
51+
>>> from verify_email import fast_verify_email
52+
>>> fast_validate_email(["[email protected]",
53+
54+
[False, False, False, False]
5955
```
60-
see for more details [usage.py](https://github.com/kakshay21/verify_email/blob/master/verify_email/usage.py)
56+
see for more examples [examples.py](https://github.com/kakshay21/verify_email/blob/master/examples.py)
6157

6258
## Contribute
6359
- Issue Tracker: https://github.com/kakshay21/verify_email/issues
@@ -67,6 +63,7 @@ Description: # verify-email
6763
If you are having issues, please create an issue for it.
6864

6965
Platform: UNKNOWN
66+
Classifier: Programming Language :: Python :: 3.7
7067
Classifier: Programming Language :: Python :: 2.7
7168
Classifier: License :: OSI Approved :: MIT License
7269
Classifier: Operating System :: OS Independent

verify_email.egg-info/SOURCES.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ README.md
22
setup.py
33
verify_email/__init__.py
44
verify_email/fast_verify.py
5-
verify_email/usage.py
65
verify_email/verify_email.py
76
verify_email.egg-info/PKG-INFO
87
verify_email.egg-info/SOURCES.txt

0 commit comments

Comments
 (0)