maldevel/EmailHarvester

Need Help

Closed this issue · 1 comments

urllib.parse import url parse
ImportError: No module name parse

To make this script compatible with python 2.7 & 3.0 find urlib.parse import urlparse and replace with the code below.

try:
  from urllib.parse import urlparse
except ImportError:
  from urlparse import urlparse