emptygif
Sprache: Deutsch

Alle Sprachen und Frameworks

Robyn Python

Ein Python-Snippet für Robyn, das Anfragen an /pixel.gif mit dem leeren GIF beantwortet, das einmal beim Start dekodiert wird.

Robyn Python

Installieren
pip install robyn
Datei
app.py
Ausführen
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)

Wir haben dieses Snippet ausgeführt und die zurückgegebenen Bytes verglichen.

Prüfen

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

Offizielle Website: Robyn

Mehr in Python