JSParser icon indicating copy to clipboard operation
JSParser copied to clipboard

Error in handler.py

Open rishikesh-j opened this issue 3 years ago • 9 comments

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

rishikesh-j avatar Mar 02 '21 15:03 rishikesh-j

same issue here

srand2 avatar Mar 08 '21 22:03 srand2

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

ghost avatar Mar 19 '21 14:03 ghost

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

sumit554 avatar Dec 01 '21 09:12 sumit554

Yeah you can solve this problem with this solution

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

ghost avatar Dec 01 '21 15:12 ghost

solve thanks

sumit554 avatar Dec 02 '21 07:12 sumit554

followed the steps still getting same error.

AkagamiNoShanks avatar Feb 09 '22 01:02 AkagamiNoShanks

read again it really works

shinchina1 avatar Feb 13 '22 15:02 shinchina1

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

kpomeroy1979 avatar Jan 31 '23 23:01 kpomeroy1979

follow these steps but no work same error

waliullah2022 avatar Aug 08 '23 11:08 waliullah2022