如何恢复被带的base64 codeD文字?

问题描述:

我怎样才能恢复被base64编码损坏的文本?例如。

How can I recover a text that was corrupted by base64 encoding? E.g.

f('Dan=E7a')=Dança

我试着用python的,但不能得到它的权利。

I tried with python but couldn't get it right.

这看起来像引用可打印编码,而不是基于64位。

That looks like Quoted-printable encoding, not base-64.

有一个名为Python标准库模块 quopri 应该能够将文本转换

There's a module in the Python standard library called quopri that should be able to convert the text.