首頁 > 後端開發 > Python教學 > 如何有效率地上傳大檔案(≥3GB)到FastAPI後端?

如何有效率地上傳大檔案(≥3GB)到FastAPI後端?

Mary-Kate Olsen
發布: 2024-11-28 09:46:12
原創
119 人瀏覽過

How to Efficiently Upload Large Files (≥3GB) to a FastAPI Backend?

如何上傳大檔案(≥3GB)到FastAPI後端?

使用Requests-Toolbelt

使用requests-toolbelt程式庫時,在宣告 upload_file 欄位時,請務必指定檔案名稱和 Content-Type 標頭。以下是一個範例:

filename = 'my_file.txt'
m = MultipartEncoder(fields={'upload_file': (filename, open(filename, 'rb'))})
r = requests.post(
    url,
    data=m,
    headers={'Content-Type': m.content_type},
    verify=False,
)
print(r.request.headers)  # confirm that the 'Content-Type' header has been set.
登入後複製

使用 Python Requests/HTTPX

另一個選擇是使用 Python 的 requests 或 HTTPX 函式庫,它們都可以有效地處理串流檔案上傳。以下是每個範例:

使用請求:

import requests

url = '...'
filename = '...'

with open(filename, 'rb') as file:
    r = requests.post(
        url,
        files={'upload_file': file},
        headers={'Content-Type': 'multipart/form-data'},
    )
登入後複製

自動使用HTTPX:

import httpx

url = '...'
filename = '...'

with open(filename, 'rb') as file:
    r = httpx.post(
        url,
        files={'upload_file': file},
    )
登入後複製

自動支援串流檔案上傳,而請求則需要設定Content-Type header為'multipart/form-data'。

使用 FastAPI Stream() 方法

FastAPI 的 .stream() 方法可讓您透過將請求正文作為流存取來避免將大檔案載入到記憶體中。若要使用此方法,請依照下列步驟操作:

  1. 安裝streaming-form-data 函式庫: 此函式庫為多部分/表單資料資料提供串流解析器。
  2. 建立FastAPI端點:使用.stream()方法將請求體解析為流,並利用該流ing_form_data 函式庫來處理 multipart/form-data 的解析。
  3. 註冊目標: 定義 FileTarget 和 ValueTarget 物件分別處理檔案和表單資料解析。

上傳檔案大小驗證

確保上傳檔案大小符合不超過指定的限制,可以使用 MaxSizeValidator。這是一個範例:

from streaming_form_data import streaming_form_data
from streaming_form_data import MaxSizeValidator

FILE_SIZE_LIMIT = 1024 * 1024 * 1024  # 1 GB

def validate_file_size(chunk: bytes):
    if FILE_SIZE_LIMIT > 0:
        streaming_form_data.validators.MaxSizeValidator( FILE_SIZE_LIMIT). __call__(chunk)
登入後複製

實作端點

這是一個包含這些技術的範例端點:

from fastapi import FastAPI, File, Request
from fastapi.responses import HTMLResponse
from streaming_form_data.targets import FileTarget, ValueTarget
from streaming_form_data import StreamingFormDataParser

app = FastAPI()

@app.post('/upload')
async def upload(request: Request):
    # Parse the HTTP headers to retrieve the boundary string.
    parser = StreamingFormDataParser(headers=request.headers)

    # Register FileTarget and ValueTarget objects.
    file_ = FileTarget()
    data = ValueTarget()
    parser.register('upload_file', file_)
    parser.register('data', data)

    async for chunk in request.stream():
        parser.data_received(chunk)

    # Validate file size (if necessary)
    validate_file_size(file_.content)

    # Process the uploaded file and data.
    return {'message': 'File uploaded successfully!'}
登入後複製

以上是如何有效率地上傳大檔案(≥3GB)到FastAPI後端?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板