检测文件的格式——chardet模块

Posted leoych

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检测文件的格式——chardet模块相关的知识,希望对你有一定的参考价值。

 f3 = open(file=path,mode=rb)
        data = f3.read()
        # print(data)
        f3.close()

        result = chardet.detect(data)
        print(result)

结果:

{‘encoding‘: ‘Big5‘, ‘confidence‘: 0.99, ‘language‘: ‘Chinese‘}

以上是关于检测文件的格式——chardet模块的主要内容,如果未能解决你的问题,请参考以下文章

编码格式检测chardet模块

使用chardet模块获取文件的编码格式,进而正确的读取文件内容

Python爬虫2-检测编码(使用chardet)

Python爬虫教程-使用chardet

基础入门_Python-模块和包.运维开发中chartdet编码检测的最佳实践?

如何使用模块化代码片段中的LeakCanary检测内存泄漏?