nntplib.decode_header(header_str)
Decode a header value, un-escaping any escaped non-ASCII characters. header_str must be a str
object. The unescaped value is returned. Using this function is recommended to display some headers in a human readable form:
1 2 3 4 5 6 | >>> decode_header( "Some subject" ) 'Some subject' >>> decode_header( "=?ISO-8859-15?Q?D=E9buter_en_Python?=" ) 'Débuter en Python' >>> decode_header( "Re: =?UTF-8?B?cHJvYmzDqG1lIGRlIG1hdHJpY2U=?=" ) 'Re: problème de matrice' |
Please login to continue.