| | |
- base64_len(s)
- Return the length of s when it is encoded with base64.
- body_decode = decode(s, convert_eols=None)
- Decode a raw base64 string.
If convert_eols is set to a string value, all canonical email linefeeds,
e.g. "\r\n", in the decoded text will be converted to the value of
convert_eols. os.linesep is a good choice for convert_eols if you are
decoding a text attachment.
This function does not parse a full MIME header value encoded with
base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high
level email.Header class for that functionality.
- body_encode = encode(s, binary=True, maxlinelen=76, eol='\n')
- Encode a string with base64.
Each line will be wrapped at, at most, maxlinelen characters (defaults to
76 characters).
If binary is False, end-of-line characters will be converted to the
canonical email end-of-line sequence \r\n. Otherwise they will be left
verbatim (this is the default).
Each line of encoded text will end with eol, which defaults to "\n". Set
this to "
" if you will be using the result of this function directly
in an email.
- decode(s, convert_eols=None)
- Decode a raw base64 string.
If convert_eols is set to a string value, all canonical email linefeeds,
e.g. "\r\n", in the decoded text will be converted to the value of
convert_eols. os.linesep is a good choice for convert_eols if you are
decoding a text attachment.
This function does not parse a full MIME header value encoded with
base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high
level email.Header class for that functionality.
- decodestring = decode(s, convert_eols=None)
- Decode a raw base64 string.
If convert_eols is set to a string value, all canonical email linefeeds,
e.g. "\r\n", in the decoded text will be converted to the value of
convert_eols. os.linesep is a good choice for convert_eols if you are
decoding a text attachment.
This function does not parse a full MIME header value encoded with
base64 (like =?iso-8895-1?b?bmloISBuaWgh?=) -- please use the high
level email.Header class for that functionality.
- encode(s, binary=True, maxlinelen=76, eol='\n')
- Encode a string with base64.
Each line will be wrapped at, at most, maxlinelen characters (defaults to
76 characters).
If binary is False, end-of-line characters will be converted to the
canonical email end-of-line sequence \r\n. Otherwise they will be left
verbatim (this is the default).
Each line of encoded text will end with eol, which defaults to "\n". Set
this to "
" if you will be using the result of this function directly
in an email.
- encodestring = encode(s, binary=True, maxlinelen=76, eol='\n')
- Encode a string with base64.
Each line will be wrapped at, at most, maxlinelen characters (defaults to
76 characters).
If binary is False, end-of-line characters will be converted to the
canonical email end-of-line sequence \r\n. Otherwise they will be left
verbatim (this is the default).
Each line of encoded text will end with eol, which defaults to "\n". Set
this to "
" if you will be using the result of this function directly
in an email.
- header_encode(header, charset='iso-8859-1', keep_eols=False, maxlinelen=76, eol='\n')
- Encode a single header line with Base64 encoding in a given charset.
Defined in RFC 2045, this Base64 encoding is identical to normal Base64
encoding, except that each line must be intelligently wrapped (respecting
the Base64 encoding), and subsequent lines must start with a space.
charset names the character set to use to encode the header. It defaults
to iso-8859-1.
End-of-line characters (\r, \n, \r\n) will be automatically converted
to the canonical email line separator \r\n unless the keep_eols
parameter is True (the default is False).
Each line of the header will be terminated in the value of eol, which
defaults to "\n". Set this to "\r\n" if you are using the result of
this function directly in email.
The resulting string will be in the form:
"=?charset?b?WW/5ciBtYXp66XLrIHf8eiBhIGhhbXBzdGHuciBBIFlv+XIgbWF6euly?=\n
=?charset?b?6yB3/HogYSBoYW1wc3Rh7nIgQkMgWW/5ciBtYXp66XLrIHf8eiBhIGhh?="
with each line wrapped at, at most, maxlinelen characters (defaults to 76
characters).
|