emptygif
Language: English

All languages and frameworks

Flask Python

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

Flask Python

Install
pip install flask
File
app.py
Run
flask --app app run --port 8080
import base64

from flask import Flask, Response

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

app = Flask(__name__)


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

We ran this snippet and compared the bytes it returned.

Check it

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

Official site: Flask

More in Python