Tornado Python
/pixel.gif 요청에 빈 GIF로 응답하는 Tornado용 Python 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.
Tornado Python
import asyncio
import base64
import re
import tornado.web
GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
class PixelHandler(tornado.web.RequestHandler):
def get(self) -> None:
self.set_header("Content-Type", "image/gif")
self.set_header("Cache-Control", "no-store")
self.write(GIF)
async def main() -> None:
# Tornado routes are regular expressions, so escape the literal path.
app = tornado.web.Application([(re.escape("/pixel.gif"), PixelHandler)])
app.listen(8080)
await asyncio.Event().wait()
if __name__ == "__main__":
asyncio.run(main())
이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.
확인
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
- Robyn
- BlackSheep
- 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