POST一个多部分编码(Multipart-Encoded)的文件

Posted cc成

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POST一个多部分编码(Multipart-Encoded)的文件相关的知识,希望对你有一定的参考价值。

Requests使得上传多部分编码文件变得很简单:

    >>> url = http://httpbin.org/post  
    >>> files = {file: open(report.xls, rb)}  
      
    >>> r = requests.post(url, files=files)  
    >>> r.text  
    {  
      ...  
      "files": {  
        "file": "<censored...binary...data>"  
      },  
      ...  
    }  

你可以显式地设置文件名,文件类型和请求头:

    >>> url = http://httpbin.org/post  
    >>> files = {file: (report.xls, open(report.xls, rb), application/vnd.ms-excel, {Expires: 0})}  
      
    >>> r = requests.post(url, files=files)  
    >>> r.text  
    {  
      ...  
      "files": {  
        "file": "<censored...binary...data>"  
      },  
      ...  
    }  

如果你想,你也可以发送作为文件来接收的字符串:

 

>>> url = http://httpbin.org/post
>>> files = {file: (report.csv, some,data,to,send\nanother,row,to,send\n)}

>>> r = requests.post(url, files=files)
>>> r.text
{
  ...
  "files": {
    "file": "some,data,to,send\\nanother,row,to,send\\n"
  },
  ...
}

 

流式上传

Requests支持流式上传,这允许你发送大的数据流或文件而无需先把它们读入内存。要使用流式上传,仅需为你的请求体提供一个类文件对象即可:

    with open(massive-body) as f:  
        requests.post(http://some.url/streamed, data=f)  

 

 

另外:

Requests本身虽然提供了简单的方法POST多部分编码(Multipart-Encoded)的文件,但是Requests是先读取文件到内存中,然后再构造请求发送出去。

如果需要发送一个非常大的文件作为 multipart/form-data 请求时,为了避免把大文件读取到内存中,我们就希望将请求做成数据流。

默认requests是不支持的(或很困难), 这时需要用到第三方包requests-toolbelt

两个库POST多部分编码(Multipart-Encoded)的文件示例代码分别如下:

1. Requests库(先读取文件至内存中)

import requests
 
url = http://httpbin.org/post
files = {file: open(report.xls, rb)}
 
r = requests.post(url, files=files)
print r.text

2. Requests+requests-toolbelt库(直接发送数据流)

import requests
from requests_toolbelt.multipart.encoder import MultipartEncoder
 
m = MultipartEncoder(
    fields={field0: value, field1: value,
            field2: (upload.zip, open(upload.zip, rb), application/zip)}
    )
 
r = requests.post(http://httpbin.org/post, data=m,
                  headers={Content-Type: m.content_type})
print r.text

转自:http://lovesoo.org/requests-post-multiple-part-encoding-multipart-encoded-file-format.html

以上是关于POST一个多部分编码(Multipart-Encoded)的文件的主要内容,如果未能解决你的问题,请参考以下文章

如何发布具有多部分/表单数据编码的数组?

使用 AJAX + 多部分表单数据 + UTF-8 编码发送文件和文本

Retrofit - @Body 参数不能与表单或多部分编码一起使用

使用 AFNetworking 的多部分 PUT 请求

处理 httprequest post 编码问题

具有特定 JSON 要求的多部分表单数据 POST