mirror of
https://github.com/maldevel/EmailHarvester.git
synced 2024-11-13 03:25:01 +08:00
Update EmailHarvester.py
This commit is contained in:
parent
11b82ea1b4
commit
cfff4533b0
1 changed files with 4 additions and 1 deletions
|
@ -44,7 +44,10 @@ import validators
|
|||
from termcolor import colored
|
||||
from argparse import RawTextHelpFormatter
|
||||
from sys import platform as _platform
|
||||
from urllib.parse import urlparse
|
||||
try:
|
||||
from urllib.parse import urlparse
|
||||
except ImportError:
|
||||
from urlparse import urlparse
|
||||
|
||||
################################
|
||||
|
||||
|
|
Loading…
Reference in a new issue