🐍 Simple Python

Minimal CGI Example

Hello from Serverless CGI!

This minimal Python script demonstrates basic CGI functionality running on AWS Lambda ARM64.

📋 Request Information

Current Time: 2025-09-07 17:50:54 UTC

Request Method: GET

Client IP: 216.73.216.98

Query String:

# Minimal CGI script structure:
print("Content-Type: text/html")
print() # Empty line required by CGI spec
print("<html>...</html>")