emptygif
Idioma: Español

Todos los lenguajes y frameworks

FastHTML Python

Un fragmento en Python para FastHTML que responde a las peticiones a /pixel.gif con el GIF vacío, decodificado una sola vez al arrancar.

FastHTML Python

Instalar
pip install python-fasthtml
Archivo
main.py
Ejecutar
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)

Ejecutamos este fragmento y comparamos los bytes que devolvió.

Comprobar

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

Sitio oficial: FastHTML

Más en Python