Scrapy第十三篇:编码检测cchardet

cchardet是chardet的升级版,功能和chardet完全一样(requests依赖包采用的就是chardet),用来检测一个字节数组的编码。由于是用C和C++实现的,所以它的速度非常快,非常适合在爬虫中用来判断网页的编码。
切记,不要相信requests返回的encoding,自己判断一下更放心。 

1.看下爬虫必备依赖包:requests是怎么解码的。

if __name__ == '__main__':
    # 获取百度新闻首页
    response: Response = requests.get('http://news.baidu.com/')

    # 直接通过text计算属性就能直接拿到字符串,但是这种方式并不保险。
    html: str = response.text

2.依赖包 

pip install cchardet

3.手动解码更放心:

import cchardet
import requests
from requests import Response

if __name__ == '__main__':
    # 获取百度新闻首页
    response: Response = requests.get('http://news.baidu.com/')
    """
    自动解码:不推荐
    """
    # 直接通过text计算属性就能直接拿到字符串,但是这种方式并不保险。
    html: str = response.text

    """
    手动解码:推荐
    """
    # 获取字节数组
    html_bytes = response.content
    # 判断编码
    detect = cchardet.detect(html_bytes)
    # 解码
    html_ = html_bytes.decode(detect['encoding'])

4.判断bytes文件编码

# -*- coding: utf-8 -*-
import cchardet as chardet

with open(r"util.py", "rb") as f:
    msg = f.read()
    result = chardet.detect(msg)
    print(result)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

文子阳

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值