emptygif
Basa: Basa Jawa

Kabeh basa lan framework

Robyn Python

Snippet Python kanggo Robyn sing mangsuli request menyang /pixel.gif nganggo empty GIF, sing didekode sepisan nalika startup.

Robyn Python

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

Snippet iki wis dilakokake lan byte asile wis dibandhingake.

Priksa

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

Situs resmi: Robyn

Liyane ing Python