设置响应对象的编码格式

设置响应对象的编码格式

爬虫爬取到的数据乱码?

 

方式一:在发送请求完获取响应对象response对象后,需要对response对象设置编码格式

response.encoding = response.apparent_encoding

其中response.apparent_encoding为获取响应对象的编码格式

response.encoding为设置对象的编码格式

# 网页源码
response = requests.get(url, headers)
# 设置响应对象的编码格式
# response.encoding = 'gzip'
response.encoding = response.apparent_encoding
page_data = response.text
etree = etree.HTML(page_data)

 

方式二:对乱码的数据单独处理(通用处理中文乱码的解决方案)

我们拿到响应对象后,通过xpath解析完毕,获取到需要的数据,单独对乱码的数据进行处理。

先处理成iso再decode成gbk

img_name = img_name.encode('iso-8859-1').decode('gbk')

其中img_name为乱码的中文数据

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值