如何更改Python email.mime中的默认结束

时间:2018-04-01 01:43:19

标签: python python-3.x newline mime-types

当我使用mime模块时,我想更改默认的结束行(\n

from email.mime.text import MIMEText
a = MIMEText('hello')
a['From'] = 'stack'
print(a.as_bytes())

结果是

b'Content-Type: text/plain; charset="us-ascii"\nMIME-Version: 1.0\nContent-Transfer-Encoding: 7bit\nFrom: stack\n\nhello'

但是,我想在HTTP请求中使用它(原因是here),因此我需要将分隔\n更改为\r\n。有没有办法实现呢?

0 个答案:

没有答案