溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python怎么使用第三方庫requests-toolbelt上傳文件流

發(fā)布時(shí)間:2022-09-22 09:49:07 來源:億速云 閱讀:421 作者:iii 欄目:開發(fā)技術(shù)

這篇“python怎么使用第三方庫requests-toolbelt上傳文件流”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“python怎么使用第三方庫requests-toolbelt上傳文件流”文章吧。

python 使用第三方庫requests-toolbelt 上傳文件流,內(nèi)容如下所示:

# pip install requests-toolbelt  使用第三方庫上傳文件流
from requests_toolbelt.multipart.encoder import MultipartEncoder

python怎么使用第三方庫requests-toolbelt上傳文件流

python怎么使用第三方庫requests-toolbelt上傳文件流

補(bǔ)充:Python使用requests和requests_toolbelt上傳文件

一、文件上傳(Form 表單方式)【先將文件讀取至內(nèi)存中,再將內(nèi)存中的文件信息上傳至服務(wù)器

1、單文件上傳

①文件上傳代碼,運(yùn)行后logo.png文件上傳至服務(wù)器:

import requests
files = {'file1': open('logo.png', 'rb')}
response = requests.post('http://www.hangge.com/upload.php', files=files)
print(response.text)

②顯式地設(shè)置文件名,文件類型和請求頭:

import requests
files = {'file1':
             ('logo.png',  # 文件名
              open('logo.png', 'rb'),  # 文件流
              'image/png',  # 請求頭Content-Type字段對應(yīng)的值
              {'Expires': '0'})
         }
response = requests.post('http://www.hangge.com/upload.php', files=files)
print(response.text)

2、多文件上傳

①有時(shí)需要在一個(gè)請求中同時(shí)發(fā)送多個(gè)文件,同樣使用files參數(shù)傳入一個(gè)數(shù)組即可:

import requests
files = [
    ('file1', ('1.png', open('logo.png', 'rb'), 'image/png')),
    ('file2', ('2.png', open('logo.png', 'rb'), 'image/png'))
]
response = requests.post('http://www.hangge.com/upload.php', files=files)
print(response.text)

3、上傳文件時(shí)需要附帶其它參數(shù)

①如果我們需要在上傳文件的同時(shí)傳遞一些其它參數(shù),也是可以的:

import requests

data = {
    "name": "hangge.com",
    "age": 100
}
files = [
    ('file1', ('1.png', open('logo.png', 'rb'), 'image/png')),
    ('file2', ('2.png', open('logo.png', 'rb'), 'image/png'))
]
response = requests.post('http://www.hangge.com/upload.php', data=data, files=files)
print(response.text)

二、流式上傳文件【邊讀取文件邊上傳文件】

1、requests-toolbelt 擴(kuò)展庫

①有時(shí)我們需要上傳一個(gè)非常大的文件(比如1G左右),如果像上面的方式直接使用Requests提交,可能會造成內(nèi)存不足而崩潰。

②所以發(fā)送大文件時(shí)還是建議將請求做成數(shù)據(jù)流。不過默認(rèn)情況下Requests不支持流式上傳,但有個(gè)第三方包requests-toolbelt 是支持的(本質(zhì)還是multipart/form-data上傳)

③requests-toolbelt是python請求的實(shí)用程序集合。

2、下載安裝requests-toolbelt第三方庫

pip install requests-toolbelt

3、使用流式上傳文件:

實(shí)例:使用requests-toolbelt 來實(shí)現(xiàn)文件的流式上傳

①不同于requests全部讀到內(nèi)存中上傳,requests-toolbelt是邊讀邊上傳。

②其本質(zhì)還是multipart/form-data 方式提交數(shù)據(jù),所以服務(wù)端代碼不需要變化。

import requests
from requests_toolbelt import MultipartEncoder

# 邊讀取文件邊上傳文件
m = MultipartEncoder(
    fields={'name': 'logo.com',  # 字段1
            "age": '100',  # 字段2
            'file1': ('1.png', open('logo.png', 'rb'), 'image/png'),  # 文件1
            'file2': ('2.png', open('logo.png', 'rb'), 'image/png')  # 文件2
            }
)
r = requests.post('http://www.hangge.com/upload.php', data=m, headers={'Content-Type': m.content_type})
print(r.text)

4、監(jiān)聽上傳進(jìn)度

①requests-toolbelt庫還提供了個(gè)監(jiān)視器MultipartEncoderMonitor,該監(jiān)視器接受一個(gè)回調(diào)函數(shù),我們可以在回調(diào)中實(shí)時(shí)跟蹤進(jìn)度。

import requests
from requests_toolbelt import MultipartEncoder, MultipartEncoderMonitor
def my_callback(monitor):
    progress = (monitor.bytes_read / monitor.len) * 100
    print("\r 文件上傳進(jìn)度:%d%%(%d/%d)" % (progress, monitor.bytes_read, monitor.len), end=" ")


e = MultipartEncoder(
    fields={'name': 'logo.com',  # 參數(shù)1
            "age": '100',  # 參數(shù)2
            'file1': ('1.png', open('logo.png', 'rb'), 'image/png'),  # 文件1
            'file2': ('2.png', open('logo.png', 'rb'), 'image/png')  # 文件2
            }
)

m = MultipartEncoderMonitor(e, my_callback)

r = requests.post('http://www.hangge.com/upload.php', data=m, headers={'Content-Type': m.content_type})
print(r.text)

②運(yùn)行效果如下,可以看到提交過程中會實(shí)時(shí)顯示進(jìn)度:

python怎么使用第三方庫requests-toolbelt上傳文件流

以上就是關(guān)于“python怎么使用第三方庫requests-toolbelt上傳文件流”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI