nahamsec / JSParser

783 stars 178 forks source link

Error in handler.py #47

Open rishikesh-j opened 3 years ago

rishikesh-j commented 3 years ago
Traceback (most recent call last):
  File "C:\Tools\JSParser-master\JSParser-master\handler.py", line 2, in <module>
    import tornado.ioloop, tornado.web, tornado.autoreload
ImportError: No module named tornado.ioloop
srand2 commented 3 years ago

same issue here

ghost commented 3 years ago

IF YOU ARE FACING ERROR IN HANDLER.PY READ THIS

1ST STEP

open safeurl.py and change

import StringIO

to

import io

2ND STEP

open handler.py

go to line 11

from cgi import escape

Change it to

from html import escape

and add this line under 11th line

import html

now you are all set

sumit554 commented 2 years ago

Traceback (most recent call last): File "C:\Tools\JSParser-master\JSParser-master\handler.py", line 2, in import tornado.ioloop, tornado.web, tornado.autoreload ImportError: No module named tornado.ioloop

ghost commented 2 years ago

Yeah you can solve this problem with this solution

https://github.com/nahamsec/JSParser/issues/47#issuecomment-802881417

sumit554 commented 2 years ago

solve thanks

AkagamiNoShanks commented 2 years ago

followed the steps still getting same error.

shinchina1 commented 2 years ago

read again it really works

kpomeroy1979 commented 1 year ago

Traceback (most recent call last): File "C:\Tools\JSParser-master\JSParser-master\handler.py", line 2, in import tornado.ioloop, tornado.web, tornado.autoreload ImportError: No module named tornado.ioloop

Same here. Solution does not work unfortunately

waliullah2022 commented 1 year ago

follow these steps but no work same error