emptygif
Lingua: Italiano

Tutti i linguaggi e framework

Robyn Python

Uno snippet Python per Robyn che risponde alle richieste a /pixel.gif con la GIF vuota, decodificata una sola volta all'avvio.

Robyn Python

Installa
pip install robyn
File
app.py
Esegui
python app.py
import base64

from robyn import Response, Robyn

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

app = Robyn(__file__)


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


if __name__ == "__main__":
    app.start(host="0.0.0.0", port=8080)

Abbiamo eseguito questo snippet e confrontato i byte che ha restituito.

Verifica

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

Sito ufficiale: Robyn

Altro in Python