emptygif
언어: 한국어

모든 언어 및 프레임워크

Google Cloud Run functions (Python) Python

/pixel.gif 요청에 빈 GIF로 응답하는 Google Cloud Run functions (Python)용 Python 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.

Google Cloud Run functions (Python) Python

설치
pip install functions-framework
파일
main.py
실행
functions-framework --target=pixel --port=8080
import base64

import functions_framework

GIF = base64.b64decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")


@functions_framework.http
def pixel(request):
    if request.path != "/pixel.gif":
        return "Not Found", 404
    return GIF, 200, {"Content-Type": "image/gif", "Cache-Control": "no-store"}

이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.

확인

curl -sI http://localhost:8080/pixel.gif

공식 사이트: Google Cloud Run functions (Python)

Python의 다른 예제