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

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

Raw WSGI (Gunicorn, uWSGI, mod_wsgi) Python

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

Raw WSGI (Gunicorn, uWSGI, mod_wsgi) Python

इंस्टॉल
pip install gunicorn
फ़ाइल
app.py
चलाएँ
gunicorn --bind :8080 app:app
import base64

GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
HEADERS = [
    ("Content-Type", "image/gif"),
    ("Content-Length", str(len(GIF))),
    ("Cache-Control", "no-store"),
]


def app(environ, start_response):
    if environ["REQUEST_METHOD"] == "GET" and environ["PATH_INFO"] == "/pixel.gif":
        start_response("200 OK", HEADERS)
        return [GIF]
    start_response("404 Not Found", [("Content-Type", "text/plain")])
    return [b"Not Found"]

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

जाँचें

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

आधिकारिक साइट: Raw WSGI (Gunicorn, uWSGI, mod_wsgi)

Python में और