博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[python] <type 'exceptions.UnicodeDecodeError'>: 'ascii' codec can't decode byte 0xe5 in position 9
阅读量:6431 次
发布时间:2019-06-23

本文共 448 字,大约阅读时间需要 1 分钟。

i am developing a plugin for getting rss from a website which is utf-8, when loading the code from the site, i got these error: 

<type 
'
exceptions.UnicodeDecodeError
'>: 
'
ascii
' codec can
'
t decode byte 0xe5 in position 9

here is the code what i used before:

title = entry_rss.title.encode(
'
UTF-8
')

then i use these code to resolve this issue:

title = entry_rss.title.encode(
'
UTF-8
')
title = unicode(title, 
"
utf-8
")

 

Have fun with python! 

 

转载地址:http://catga.baihongyu.com/

你可能感兴趣的文章
实验三
查看>>
Vue 项目构建
查看>>
[Ruby on Rails系列]2、开发环境准备:Ruby on Rails开发环境配置
查看>>
android studio adb
查看>>
框架源码系列二:手写Spring-IOC和Spring-DI(IOC分析、IOC设计实现、DI分析、DI实现)...
查看>>
asp.net编译 懒人脚本
查看>>
二分答案经典入门题:)
查看>>
为什么你需要将代码迁移到ASP.NET Core 2.0?
查看>>
Servlet的多线程和线程安全
查看>>
存储树形的数据表转为Json
查看>>
CAN 总线通信控制芯片SJA1000 的读写
查看>>
oauth授权协议的原理
查看>>
OutputCache说明
查看>>
sdl2.0示例
查看>>
数学 --- 高斯消元 POJ 1830
查看>>
Ejabberd源码解析前奏--集群
查看>>
[ZHUAN]Flask学习记录之Flask-SQLAlchemy
查看>>
【转】Install SmartGit via PPA in Ubuntu 13.10/13.04/12.04/Linux Mint
查看>>
PNG怎么转换成32位的BMP保持透明
查看>>
经验分享:CSS浮动(float,clear)通俗讲解
查看>>