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
From python chardet 3.x, it support the name of detectd language.
usock = urlopen(url) detector = UniversalDetector() detector.reset () for line in usock.readlines(): detector.feed(line) if detector.done: break detector.close() usock.close() print (detector.result)
results are follows:
{'encoding': 'MacCyrillic', 'confidence': 0.33487987945663855, 'language': 'Russian'}
The text was updated successfully, but these errors were encountered:
Joungkyun
No branches or pull requests
From python chardet 3.x, it support the name of detectd language.
results are follows:
The text was updated successfully, but these errors were encountered: