我正在尝试使用 httplib2 发布一个 HTTP 请求,该请求包含一些 xml 和一些使用此信息集的二进制数据:
MIME-Version: 1.0
Content-Type: Multipart/Related;boundary=MIME_boundary;
...
--MIME_boundary
Content-Type: application/xop+xml;
// [the xml string goes here...]
--MIME_boundary
Content-Type: image/png
Content-Transfer-Encoding: binary
Content-ID: <http://example.org/me.png>
// [the binary octets for png goes here...]
我的做法是生成一个txt文件,然后填写xml和二进制数据。
我在将二进制数据写入从 png 读取的文件时遇到问题:
pngfile = open(pngfile, "rb")
bindata = pngfile.read()
最好的方法是什么?