Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complete Solution for JSparser StrinIO issue and handler.py issue #53

Open
hitesh9811 opened this issue Jun 13, 2021 · 2 comments
Open

Comments

@hitesh9811
Copy link

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

@hitesh9811 hitesh9811 changed the title Solution for JSparser issue Complete Solution for JSparser StrinIO issue and handler.py issue Jun 13, 2021
@gokuss9
Copy link

gokuss9 commented Jul 13, 2021

Use urllib.parse and not urlib.parse

This will solve the issue

@AkagamiNoShanks
Copy link

I get the following error pycurl.error: (23, 'failure writing output to destination')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants