a0xnirudh / WebXploiter

WebXploiter - An OWASP Top 10 Security scanner !
http://webxploiter.readthedocs.org/
GNU General Public License v3.0
74 stars 21 forks source link

Error while running #16

Open qusaialhaddad opened 7 years ago

qusaialhaddad commented 7 years ago

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 commented 7 years ago

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

ghost commented 6 years ago

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 commented 6 years ago

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 commented 6 years ago

Thanks !

2018-01-11 14:21 GMT+04:00 PS Narayanan notifications@github.com:

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

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/a0xnirudh/WebXploiter/issues/16#issuecomment-356890730, or mute the thread https://github.com/notifications/unsubscribe-auth/AcQFOjXxscUS-iAJ74ulmMsPrcMWhSzJks5tJeCpgaJpZM4PGVzm .