当前位置: 首页 > 工具软件 > Chardet > 使用案例 >

【python】chardet函数用法

柳浩大
2023-12-01

一、chardet介绍

chardet的使用非常简单,主模块里面只有一个函数detect。detect有一个参数,要求是bytes类型。bytes类型可以通过读取网页内容、open函数的rb模式、带b前缀的字符串、encode函数等途径获得。

二、代码测试

import chardet

str1 = 'hello wyt'.encode('utf-8')  # encode 接受str,返回一个bytes
print(type(str1),str1)

result = chardet.detect(str1)  # chardet 接受bytes类型,返回一个字典,返回内容为页面编码类型.
print(type(result),result)
codetype = result.get('encoding')
print(codetype)

三、返回

<class 'bytes'> b'hello wyt'
<class 'dict'> {'encoding': 'ascii', 'confidence': 1.0, 'language': ''}
ascii

四、一般用法

一般用chardet查看构造请求的返回内容网页中的编码形式,以下定义意义为:以ascii码发送http响应信息

codetype = chardet.detect(res.content).get('encoding')
res.encoding = codetype
 类似资料: