uuDecode problem

Fredrik Lundh fredrik at pythonware.com
Fri Dec 9 07:07:55 EST 2005


"py" wrote:

> What would you suggest?  I have to encode/decode in chunks b/c of the
> 45 byte limitation.

so use 45-byte chunks, instead of one-byte chunks.

but why are you using UU encoding in a nonstandard way ?  why not just
use the "uu" module to do the chunking for you?  the third example on this
page might be helpful:

    http://effbot.org/librarybook/uu.htm

(if you don't want the standard begin/end lines, it's probably a better idea
to use base64 encoding instead...)

</F>






More information about the Python-list mailing list