Существует ли библиотека Python, которая может обнаруживать (и, возможно, декодировать) кодировку строки?
Я нашел chardet
, но выдает ошибку, используя:
chardet.detect(self.ui.TextFrom.toPlainText())
got: = chardet.detect(self.ui.TextFrom.toPlainText())
File .... u.feed(aBuf) File ....
if self._highBitDetector.search(aBuf):
TypeError: buffer size mismatch
Также:
print type(self.ui.TextFrom.toPlainText())
# <class 'PyQt4.QtCore.QString'>