uuDecode problem
Fredrik Lundh
fredrik at pythonware.com
Fri Dec 9 07:07:55 EST 2005
More information about the Python-list mailing list
Fri Dec 9 07:07:55 EST 2005
- Previous message (by thread): uuDecode problem
- Next message (by thread): uuDecode problem
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
"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>
- Previous message (by thread): uuDecode problem
- Next message (by thread): uuDecode problem
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list