We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Python 3 is HTMLParser in html.parser
HTMLParser
html.parser
So to prevent import error I had to change in cli/dict.py:
cli/dict.py
line 16: import HTMLParser from html.parser import HTMLParser line 27: pars = HTMLParser.HTMLParser() pars = HTMLParser()
The text was updated successfully, but these errors were encountered:
Thanks for the report. This should be fixed by #6. I'll hopefully push a new version to PyPI this evening.
Sorry, something went wrong.
Just one more thing (I don't want to make new ticket for that):
cli/__init__.py line 55: jsonstring = json.dumps(records, indent=2, ensure_ascii=False).decode('utf-8')
cli/__init__.py
This prevents the AttributeError: 'str' object has no attribute 'decode'
AttributeError: 'str' object has no attribute 'decode'
No branches or pull requests
In Python 3 is
HTMLParser
inhtml.parser
So to prevent import error I had to change in
cli/dict.py
:line 16:
import HTMLParserfrom html.parser import HTMLParserline 27:
pars = HTMLParser.HTMLParser()pars = HTMLParser()The text was updated successfully, but these errors were encountered: