JSParser
JSParser copied to clipboard
Complete Solution for JSparser StrinIO issue and handler.py issue
solution for StringIO issue in safeurl.py
- open safeurl.py and change
import StringIO
to
import io
Now open handler.py and do following
-
go to line 11 and change
from cgi import escape
to
from html import escape
-
Add this below line 11
import html
-
Go to line 4 in handler.py and change
urlparse
to
urlib.parse
Use urllib.parse and not urlib.parse
This will solve the issue
I get the following error pycurl.error: (23, 'failure writing output to destination')