pdfminer / pdfminer.six

Community maintained fork of pdfminer - we fathom PDF
https://pdfminersix.readthedocs.io
MIT License
5.82k stars 921 forks source link

Use base64.a85decode from stdlib #602

Open ciupicri opened 3 years ago

ciupicri commented 3 years ago

The standard library has a function named a85decode in the base64 module, perhaps we could use it instead of our custom implementation.

The difference is that it requires a parameter to differentiate between the "standard" and the Adobe Ascii85 formats.

pietermarsman commented 2 years ago

Great tip!