BlackSheep Python
/pixel.gif 요청에 빈 GIF로 응답하는 BlackSheep용 Python 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.
BlackSheep Python
import base64
from blacksheep import Application, Content, Response, get
GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
app = Application()
@get("/pixel.gif")
async def pixel() -> Response:
return Response(200, [(b"Cache-Control", b"no-store")], Content(b"image/gif", GIF))
이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.
확인
curl -sI http://localhost:8080/pixel.gif