编码自测包:chardet

1.安装:pip install chardet
2.用法:
  

>>> import chardet
>>> a='你好python'
>>> print a,chardet.detect(a)
你好python {'confidence': 0.99, 'encoding': 'GB2312'}
>>> 

你可能感兴趣的:(编码自测包:chardet)