Robyn Python
مقتطف بلغة Python لـ Robyn يستجيب لطلبات /pixel.gif بملف GIF الفارغ، الذي يُفك ترميزه مرة واحدة عند بدء التشغيل.
Robyn Python
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)
شغّلنا هذا المقتطف وقارنّا البايتات التي أعادها.
التحقق
curl -sI http://localhost:8080/pixel.gif
المزيد بلغة Python
- AWS Lambda (Python)
- Google Cloud Run functions (Python)
- FastAPI
- Litestar
- Starlette
- Django
- Flask
- aiohttp
- Sanic
- Quart
- Falcon
- BlackSheep
- Tornado
- Bottle
- Pyramid
- Microdot (CPython and MicroPython)
- Raw ASGI (Uvicorn, Granian, Hypercorn)
- Raw WSGI (Gunicorn, uWSGI, mod_wsgi)
- Python standard library (http.server)
- Python one-liner