WebXploiter icon indicating copy to clipboard operation
WebXploiter copied to clipboard

Error while running

Open qusaialhaddad opened this issue 6 years ago • 4 comments

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

qusaialhaddad avatar Aug 29 '17 18:08 qusaialhaddad

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

attacker34 avatar Oct 11 '17 07:10 attacker34

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

ghost avatar Dec 23 '17 06:12 ghost

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

PSNAppz avatar Jan 11 '18 10:01 PSNAppz

Thanks !

2018-01-11 14:21 GMT+04:00 PS Narayanan [email protected]:

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 .

ghost avatar Jan 12 '18 09:01 ghost