Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error while running #16

Open
qusaialhaddad opened this issue Aug 29, 2017 · 4 comments
Open

Error while running #16

qusaialhaddad opened this issue Aug 29, 2017 · 4 comments

Comments

@qusaialhaddad
Copy link

I am getting error while running the command , all installation went fine.

this is the error

Traceback (most recent call last):
File "./WebXploiter.py", line 5, in
from urllib.parse import urlparse
ImportError: No module named parse

@attacker34
Copy link

I am having same problem. Please update the issue .is there anyone??

@ghost
Copy link

ghost commented Dec 23, 2017

Hi
and i have the same problem

Traceback (most recent call last):
File "WebXploiter.py", line 5, in
from urllib.parse import urlparse
ImportError: No module named parse

@PSNAppz
Copy link

PSNAppz commented Jan 11, 2018

If you need to write code which is Python2 and Python3 compatible you can use the following import

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

@ghost
Copy link

ghost commented Jan 12, 2018 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants