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
The German word "gebührenfrei" is incorrectly detected as ISO-8859-2, even though the correct encoding appears to be UTF-8.
>>> buf = b'geb\xc3\xbchrenfrei' >>> charade.detect(buf) {'confidence': 0.6946821700961592, 'encoding': 'ISO-8859-2'} >>> print buf.decode('ISO-8859-2') gebĂźhrenfrei >>> print buf.decode('utf8') gebührenfrei
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The German word "gebührenfrei" is incorrectly detected as ISO-8859-2, even though the correct encoding appears to be UTF-8.
The text was updated successfully, but these errors were encountered: