emptygif
言語: 日本語

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

FastHTML Python

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

FastHTML Python

インストール
pip install python-fasthtml
ファイル
main.py
実行
python main.py
from base64 import b64decode

from fasthtml.common import FastHTML, Response, serve

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

# Not fast_app(): it adds a static-file route that would claim *.gif paths first.
app = FastHTML()


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


serve(port=8080)

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

確認

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

公式サイト: FastHTML

Python の他の例