【问题标题】:Python 3.4 - Multipart Post Using Standard LibraryPython 3.4 - 使用标准库的多部分帖子
【发布时间】:2015-09-26 15:28:41
【问题描述】:

有没有人举例说明如何在 Python 3.4 中不使用请求之类的 3rd 方库进行多部分发布?

我在将旧的 Python 2 代码移植到 Python 3.4 时遇到问题。

这里是python 2的编码代码:

def _encode_multipart_formdata(self, fields, files):
    boundary = mimetools.choose_boundary()
    buf = StringIO()
    for (key, value) in fields.iteritems():
        buf.write('--%s\r\n' % boundary)
        buf.write('Content-Disposition: form-data; name="%s"' % key)
        buf.write('\r\n\r\n' + self._tostr(value) + '\r\n')
    for (key, filepath, filename) in files:
        if os.path.isfile(filepath):
            buf.write('--%s\r\n' % boundary)
            buf.write('Content-Disposition: form-data; name="%s"; filename="%s"\r\n' % (key, filename))
            buf.write('Content-Type: %s\r\n' % (self._get_content_type3(filename)))
            file = open(filepath, "rb")
            try:
                buf.write('\r\n' + file.read() + '\r\n')
            finally:
                file.close()
    buf.write('--' + boundary + '--\r\n\r\n')
    buf = buf.getvalue()
    content_type = 'multipart/form-data; boundary=%s' % boundary
    return content_type, buf

我发现我可以将 mimetools.choose_boundary() 替换为以下内容:

import email.generator
print (email.generator._make_boundary())

对于 _get_content_type3() 方法,我正在执行以下操作:

def _get_content_type(self, filename):
        return mimetypes.guess_type(filename)[0] or 'application/octet-stream'

当我在使用 Python3.4 中将 StringIO 更改为 BytesIO 时,数据似乎从未放入 POST 方法中。

有什么建议吗?

【问题讨论】:

标签: python python-3.x post urllib


【解决方案1】:

是的,email.generator._make_boundary() 可以工作:

import email.generator
import io
import shutil

def _encode_multipart_formdata(self, fields, files):
    boundary = email.generator._make_boundary()
    buf = io.BytesIO()
    textwriter = io.TextIOWrapper(
        buf, 'utf8', newline='', write_through=True)

    for (key, value) in fields.items():
        textwriter.write(
            '--{boundary}\r\n'
            'Content-Disposition: form-data; name="{key}"\r\n\r\n'
            '{value}\r\n'.format(
                boundary=boundary, key=key, value=value))

    for (key, filepath, filename) in files:
        if os.path.isfile(filepath):
            textwriter.write(
                '--{boundary}\r\n'
                'Content-Disposition: form-data; name="{key}"; '
                'filename="{filename}"\r\n'
                'Content-Type: {content_type}\r\n\r\n'.format(
                    boundary=boundary, key=key, filename=filename,
                    content_type=self._get_content_type3(filename)))
            with open(filepath, "rb") as f:
                shutil.copyfileobj(f, buf)
            textwriter.write('\r\n')

    textwriter.write('--{}--\r\n\r\n'.format(boundary))
    content_type = 'multipart/form-data; boundary={}'.format(boundary)
    return content_type, buf.getvalue()

这使用io.TextIOWrapper() object 使标头格式化和编码更容易(bytes 对象不支持格式化操作;您必须等待 Python 3.5 添加 % 支持)。

如果您坚持在整个工作中使用email 包,请考虑到您需要两倍的内存;一次保存email.mime 对象,再次保存写入结果:

from email.mime import multipart, nonmultipart, text
from email.generator import BytesGenerator
from email import policy
from io import BytesIO

def _encode_multipart_formdata(self, fields, files):
    msg = multipart.MIMEMultipart('form-data')

    for (key, value) in fields.items():
        part = text.MIMEText(value)
        part['Content-Disposition'] = 'form-data; name="{}"'.format(key)
        msg.attach(part)

    for (key, filepath, filename) in files:
        if os.path.isfile(filepath):
            ct = self._get_content_type3(filename)
            part = nonmultipart.MIMENonMultipart(*ct.split('/'))
            part['Content-Disposition'] = (
                'form-data; name="{}"; filename="{}"'.format(
                    key, filename))
            with open(filepath, "rb") as f:
                part.set_payload(f.read())
            msg.attach(part)

    body = BytesIO()
    generator = BytesGenerator(
        body, mangle_from_=False, policy=policy.HTTP)
    generator.flatten(msg)
    return msg['content-type'], body.getvalue().partition(b'\r\n\r\n')[-1]

结果基本相同,只是增加了一些MIME-VersionContent-Transfer-Encoding 标头。

【讨论】:

  • poster(纯Python,独立,不支持Python 3?),urllib3.filepost(可能取决于其他部分),distutils'upload_file`(专门上传文件到pypi), MultipartPostHandler (Python 2),"multipart/form-data encoding" Python issue 的补丁。
  • @J.F.Sebastian:但 OP 要求提供非第三方库解决方案,所以现在我们有了另一个解决方案。
  • 我很惊讶在 stdlib 中的 email.mime 包中的某处没有 multipart_encode() 等效项。
  • @J.F.Sebastian:有,但它是rather buried;您需要构建Message 对象的树,生成的消息包含完整的电子邮件结构,而不仅仅是编码的多部分正文。然后,您必须再次删除额外的标题。
  • @MartijnPieters - 谢谢,我现在要测试一下!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2014-09-05
  • 1970-01-01
相关资源
最近更新 更多