DeppWang / youdaonote-pull

📝 一个一键导出 / 备份「有道云笔记」所有笔记的 Python 脚本。 A Python script to export/backup all the notes of the "Youdao Note".
MIT License
1.33k stars 292 forks source link

有道云笔记导出md,打开是乱码 #69

Closed ausle closed 2 years ago

ausle commented 2 years ago

运行pull.py时,提示 ‘utf-8’ codec decode byte的错误。 然后我就改了pull.py文件,把decode('utf-8')改成了decode('utf-8','ignore')。 然后就没有错误,成功转成了md。 可md打开全是乱码。并且本地的路径下没有图片。请问开发者,我哪个步骤有问题。

roland1003053305 commented 2 years ago

image

DeppWang commented 2 years ago

因为有道云笔记将 note 类型的 Content-Encoding 改为了 br 格式,以降低文件内容大小br 默认不解码,所以需要安装 brotli「解码」。

pip install brotli
or
pip3 install brotli

安装后再尝试