f3a5fd5597ac4056b2c6d3e13f4.../README.md
2025-04-26 00:16:23 +00:00

298 B

vel=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')

def main(request): logging.info(f"Function called with request: {request}")

data = request.get_json(force=True)

logging.info(f"Received data: {data}") return {"result": data.get("a", 0)+data.get("b", 0)}# python hello-world