用法:
email.header.decode_header(header)
在不转换字符集的情况下解码消息头值。标头值在
header
中。此函数返回包含标头的每个解码部分的
(decoded_string, charset)
对列表。charset
对于标头的非编码部分是None
,否则为包含编码字符串中指定的字符集名称的小写字符串。这是一个例子:
>>> from email.header import decode_header >>> decode_header('=?iso-8859-1?q?p=F6stal?=') [(b'p\xf6stal', 'iso-8859-1')]
相关用法
- Python email.headerregistry.DateHeader用法及代码示例
- Python email.headerregistry.BaseHeader用法及代码示例
- Python email.message.Message.walk用法及代码示例
- Python email.message.EmailMessage.add_header用法及代码示例
- Python email.utils.getaddresses用法及代码示例
- Python email.message.EmailMessage.walk用法及代码示例
- Python email.message.Message.add_header用法及代码示例
- Python email.message.Message.as_bytes用法及代码示例
- Python email.message.Message.as_string用法及代码示例
- Python email.iterators._structure用法及代码示例
- Python emoji转text用法及代码示例
- Python numpy matrix empty()用法及代码示例
- Python numpy matrix eye()用法及代码示例
- Python enchant.request_dict()用法及代码示例
- Python eval()用法及代码示例
- Python enum.IntEnum用法及代码示例
- Python math expm1()用法及代码示例
- Python enchant.get_enchant_version()用法及代码示例
- Python enchant.request_pwl_dict()用法及代码示例
- Python eval用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 email.header.decode_header。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。