emptygif
Language: English

All languages and frameworks

Robyn Python

A Python snippet for Robyn that answers requests for /pixel.gif with the empty GIF, decoded once at startup.

Robyn Python

Install
pip install robyn
File
app.py
Run
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)

We ran this snippet and compared the bytes it returned.

Check it

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

Official site: Robyn

More in Python