Tous les langages et frameworks
Falcon Python
Un extrait Python pour Falcon qui répond aux requêtes sur /pixel.gif avec le GIF vide, décodé une seule fois au démarrage.
Falcon Python
import base64
import falcon.asgi
GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
class PixelResource:
async def on_get(self, req: falcon.asgi.Request, resp: falcon.asgi.Response) -> None:
resp.content_type = "image/gif"
resp.cache_control = ["no-store"]
resp.data = GIF
app = falcon.asgi.App()
app.add_route("/pixel.gif", PixelResource())
Nous avons exécuté cet extrait et comparé les octets qu’il a renvoyés.
Vérifier
curl -sI http://localhost:8080/pixel.gif
Autres extraits en Python
- AWS Lambda (Python)
- Google Cloud Run functions (Python)
- FastAPI
- Litestar
- Starlette
- Django
- Flask
- aiohttp
- Sanic
- Quart
- Robyn
- 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