💾 Archived View for tris.fyi › pydoc › email.charset captured on 2023-01-29 at 03:55:14. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-07-16)

-=-=-=-=-=-=-

Back to module index

Go to module by name

email

email.charset

This module has no docstring.

Classes

Charset

Map character sets to their email properties.

    This class provides information about the requirements imposed on email
    for a specific character set.  It also provides convenience routines for
    converting between character sets, given the availability of the
    applicable codecs.  Given a character set, it will do its best to provide
    information on how to use that character set in an email in an
    RFC-compliant way.

    Certain character sets must be encoded with quoted-printable or base64
    when used in email headers or bodies.  Certain character sets must be
    converted outright, and are not allowed in email.  Instances of this
    module expose the following information about a character set:

    input_charset: The initial character set specified.  Common aliases
                   are converted to their `official' email names (e.g. latin_1
                   is converted to iso-8859-1).  Defaults to 7-bit us-ascii.

    header_encoding: If the character set must be encoded before it can be
                     used in an email header, this attribute will be set to
                     charset.QP (for quoted-printable), charset.BASE64 (for
                     base64 encoding), or charset.SHORTEST for the shortest of
                     QP or BASE64 encoding.  Otherwise, it will be None.

    body_encoding: Same as header_encoding, but describes the encoding for the
                   mail message's body, which indeed may be different than the
                   header encoding.  charset.SHORTEST is not allowed for
                   body_encoding.

    output_charset: Some character sets must be converted before they can be
                    used in email headers or bodies.  If the input_charset is
                    one of them, this attribute will contain the name of the
                    charset output will be converted to.  Otherwise, it will
                    be None.

    input_codec: The name of the Python codec used to convert the
                 input_charset to Unicode.  If no conversion codec is
                 necessary, this attribute will be None.

    output_codec: The name of the Python codec used to convert Unicode
                  to the output_charset.  If no conversion codec is necessary,
                  this attribute will have the same value as the input_codec.
    
body_encode(self, string)

  Body-encode a string by converting it first to bytes.

          The type of encoding (base64 or quoted-printable) will be based on
          self.body_encoding.  If body_encoding is None, we assume the
          output charset is a 7bit encoding, so re-encoding the decoded
          string using the ascii codec produces the correct string version
          of the content.
        
get_body_encoding(self)

  Return the content-transfer-encoding used for body encoding.

          This is either the string `quoted-printable' or `base64' depending on
          the encoding used, or it is a function in which case you should call
          the function with a single argument, the Message object being
          encoded.  The function should then set the Content-Transfer-Encoding
          header itself to whatever is appropriate.

          Returns "quoted-printable" if self.body_encoding is QP.
          Returns "base64" if self.body_encoding is BASE64.
          Returns conversion function otherwise.
        
get_output_charset(self)

  Return the output character set.

          This is self.output_charset if that is not None, otherwise it is
          self.input_charset.
        
header_encode(self, string)

  Header-encode a string by converting it first to bytes.

          The type of encoding (base64 or quoted-printable) will be based on
          this charset's `header_encoding`.

          :param string: A unicode string for the header.  It must be possible
              to encode this string to bytes using the character set's
              output codec.
          :return: The encoded string, with RFC 2047 chrome.
        
header_encode_lines(self, string, maxlengths)

  Header-encode a string by converting it first to bytes.

          This is similar to `header_encode()` except that the string is fit
          into maximum line lengths as given by the argument.

          :param string: A unicode string for the header.  It must be possible
              to encode this string to bytes using the character set's
              output codec.
          :param maxlengths: Maximum line length iterator.  Each element
              returned from this iterator will provide the next maximum line
              length.  This parameter is used as an argument to built-in next()
              and should never be exhausted.  The maximum line lengths should
              not count the RFC 2047 chrome.  These line lengths are only a
              hint; the splitter does the best it can.
          :return: Lines of encoded strings, each with RFC 2047 chrome.
        

partial

partial(func, *args, **keywords) - new function with partial application
    of the given arguments and keywords.

args = <member 'args' of 'functools.partial' objects>
  tuple of arguments to future partial calls
func = <member 'func' of 'functools.partial' objects>
  function object to use in future partial calls
keywords = <member 'keywords' of 'functools.partial' objects>
  dictionary of keyword arguments to future partial calls

Functions

add_alias

add_alias(alias, canonical)

  Add a character set alias.

      alias is the alias name, e.g. latin-1
      canonical is the character set's canonical name, e.g. iso-8859-1
    

add_charset

add_charset(charset, header_enc=None, body_enc=None, output_charset=None)

  Add character set properties to the global registry.

      charset is the input character set, and must be the canonical name of a
      character set.

      Optional header_enc and body_enc is either charset.QP for
      quoted-printable, charset.BASE64 for base64 encoding, charset.SHORTEST for
      the shortest of qp or base64 encoding, or None for no encoding.  SHORTEST
      is only valid for header_enc.  It describes how message headers and
      message bodies in the input charset are to be encoded.  Default is no
      encoding.

      Optional output_charset is the character set that the output should be
      in.  Conversions will proceed from input charset, to Unicode, to the
      output charset when the method Charset.convert() is called.  The default
      is to output in the same character set as the input.

      Both input_charset and output_charset must have Unicode codec entries in
      the module's charset-to-codec mapping; use add_codec(charset, codecname)
      to add codecs the module does not know about.  See the codecs module's
      documentation for more information.
    

add_codec

add_codec(charset, codecname)

  Add a codec that map characters in the given charset to/from Unicode.

      charset is the canonical name of a character set.  codecname is the name
      of a Python codec, as appropriate for the second argument to the unicode()
      built-in, or to the encode() method of a Unicode string.
    

encode_7or8bit

encode_7or8bit(msg)

  Set the Content-Transfer-Encoding header to 7bit or 8bit.

Other members

ALIASES = {'latin_1': 'iso-8859-1', 'latin-1': 'iso-8859-1', 'latin_2': 'iso-8859-2', 'latin-2': 'iso-8859-2', 'latin_3': 'iso-8859-3', 'latin-3': 'iso-8859-3', 'latin_4': 'iso-8859-4', 'latin-4': 'iso-8859-4', 'latin_5': 'iso-8859-9', 'latin-5': 'iso-8859-9', 'latin_6': 'iso-8859-10', 'latin-6': 'iso-8859-10', 'latin_7': 'iso-8859-13', 'latin-7': 'iso-8859-13', 'latin_8': 'iso-8859-14', 'latin-8': 'iso-8859-14', 'latin_9': 'iso-8859-15', 'latin-9': 'iso-8859-15', 'latin_10': 'iso-8859-16', 'latin-10': 'iso-8859-16', 'cp949': 'ks_c_5601-1987', 'euc_jp': 'euc-jp', 'euc_kr': 'euc-kr', 'ascii': 'us-ascii'}
BASE64 = 2
CHARSETS = {'iso-8859-1': (1, 1, None), 'iso-8859-2': (1, 1, None), 'iso-8859-3': (1, 1, None), 'iso-8859-4': (1, 1, None), 'iso-8859-9': (1, 1, None), 'iso-8859-10': (1, 1, None), 'iso-8859-13': (1, 1, None), 'iso-8859-14': (1, 1, None), 'iso-8859-15': (1, 1, None), 'iso-8859-16': (1, 1, None), 'windows-1252': (1, 1, None), 'viscii': (1, 1, None), 'us-ascii': (None, None, None), 'big5': (2, 2, None), 'gb2312': (2, 2, None), 'euc-jp': (2, None, 'iso-2022-jp'), 'shift_jis': (2, None, 'iso-2022-jp'), 'iso-2022-jp': (2, None, None), 'koi8-r': (2, 2, None), 'utf-8': (3, 2, 'utf-8')}
CODEC_MAP = {'gb2312': 'eucgb2312_cn', 'big5': 'big5_tw', 'us-ascii': None}
DEFAULT_CHARSET = 'us-ascii'
EMPTYSTRING = ''
QP = 1
RFC2047_CHROME_LEN = 7
SHORTEST = 3
UNKNOWN8BIT = 'unknown-8bit'

Modules

email

errors