emptygif
言語: 日本語

すべての言語・フレームワーク

FastAPI Python

/pixel.gif へのリクエストに空の GIF を返す、FastAPI 用の Python スニペット。GIF は起動時に一度だけデコードします。

FastAPI Python

インストール
pip install "fastapi[standard]"
ファイル
main.py
実行
fastapi run main.py --port 8080
import base64

from fastapi import FastAPI, Response

GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")

app = FastAPI()


@app.get("/pixel.gif", include_in_schema=False)
def pixel() -> Response:
    return Response(GIF, media_type="image/gif", headers={"Cache-Control": "no-store"})

このスニペットは実行し、返されたバイト列を照合しました。

確認

curl -sI http://localhost:8080/pixel.gif

公式サイト: FastAPI

Python の他の例