emptygif
भाषा: हिन्दी

सभी भाषाएँ और फ़्रेमवर्क

FastHTML Python

FastHTML के लिए Python स्निपेट, जो /pixel.gif पर आने वाली रिक्वेस्ट का जवाब empty GIF से देता है। GIF स्टार्टअप पर एक ही बार डिकोड होता है।

FastHTML Python

इंस्टॉल
pip install python-fasthtml
फ़ाइल
main.py
चलाएँ
python main.py
from base64 import b64decode

from fasthtml.common import FastHTML, Response, serve

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

# Not fast_app(): it adds a static-file route that would claim *.gif paths first.
app = FastHTML()


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


serve(port=8080)

हमने यह स्निपेट चलाया और इसके लौटाए बाइट्स की तुलना की।

जाँचें

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

आधिकारिक साइट: FastHTML

Python में और