emptygif
Langue: Français

Tous les langages et frameworks

Bottle Python

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

Bottle Python

Installer
pip install bottle
Fichier
app.py
Lancer
python app.py
import base64

from bottle import Bottle, response

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

app = Bottle()


@app.get("/pixel.gif")
def pixel():
    response.content_type = "image/gif"
    response.set_header("Cache-Control", "no-store")
    return GIF


if __name__ == "__main__":
    app.run(host="0.0.0.0", 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: Bottle

Autres extraits en Python