FastAPI Python
/pixel.gif 요청에 빈 GIF로 응답하는 FastAPI용 Python 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.
FastAPI Python
import base64
from fastapi import FastAPI, Response
GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
app = FastAPI()
@app.get("/pixel.gif", include_in_schema=False)
def pixel() -> Response:
return Response(GIF, media_type="image/gif", headers={"Cache-Control": "no-store"})
이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.
확인
curl -sI http://localhost:8080/pixel.gif
Python의 다른 예제
- AWS Lambda (Python)
- Google Cloud Run functions (Python)
- Litestar
- Starlette
- Django
- Flask
- aiohttp
- Sanic
- Quart
- Falcon
- 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