emptygif
Langue: Français

Tous les langages et frameworks

FastHTML Python

Un extrait Python pour FastHTML qui répond aux requêtes sur /pixel.gif avec le GIF vide, décodé une seule fois au démarrage.

FastHTML Python

Installer
pip install python-fasthtml
Fichier
main.py
Lancer
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)

Nous avons exécuté cet extrait et comparé les octets qu’il a renvoyés.

Vérifier

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

Site officiel: FastHTML

Autres extraits en Python