AWS Lambda (Python) Python
AWS Lambda (Python) के लिए Python स्निपेट, जो /pixel.gif पर आने वाली रिक्वेस्ट का जवाब empty GIF से देता है। GIF स्टार्टअप पर एक ही बार डिकोड होता है।
AWS Lambda (Python) Python
# lambda_function.py - behind an API Gateway HTTP API route "GET /pixel.gif" or a function URL.
# Binary bodies travel base64-encoded, so the GIF stays in base64 here.
GIF_BASE64 = "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
def lambda_handler(event, context):
return {
"statusCode": 200,
"headers": {"Content-Type": "image/gif", "Cache-Control": "no-store"},
"body": GIF_BASE64,
"isBase64Encoded": True,
}
हमने यह स्निपेट चलाया और इसके लौटाए बाइट्स की तुलना की।
जाँचें
curl -sI http://localhost:8080/pixel.gif
आधिकारिक साइट: AWS Lambda (Python)