当我使用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
。有没有办法实现呢?