python

超轻量级php框架startmvc

Python简单检测文本类型的2种方法【基于文件头及cchardet库】

更新时间:2020-04-24 09:40:01 作者:startmvc
本文实例讲述了Python简单检测文本类型的方法。分享给大家供大家参考,具体如下:1、根

本文实例讲述了Python简单检测文本类型的方法。分享给大家供大家参考,具体如下:

1、根据文件头。


#是否为带BOM头的UTF8文件
def IsUtf8BomFile(pathfile):
 if b'\xef\xbb\xbf' == open(pathfile, mode='rb').read(3)):
 return True
 return False

2、用cchardet库。


>>> import cchardet
>>> cchardet.detect(open(pathfile, 'rb').read())
{'encoding': 'UTF-8', 'confidence': 0.9900000095367432}

Python 检测 文本类型