emptygif
Wika: Filipino

Lahat ng language at framework

Robyn Python

Isang Python snippet para sa Robyn na sumasagot sa mga request sa /pixel.gif gamit ang empty GIF, na isang beses lang dine-decode sa startup.

Robyn Python

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

Pinatakbo namin ang snippet na ito at ikinumpara ang mga byte na ibinalik nito.

Suriin

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

Opisyal na site: Robyn

Iba pa sa Python