email.charset.add_codec(charset, codecname)
Add a codec that map characters in the given character set to and 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 str
‘s encode()
method.
Please login to continue.