Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aletrn
/
samgis
like
4
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
243f395
samgis
/
src
/
app.py
aletrn
[feat] revert to aws lambda - wip
243f395
over 1 year ago
raw
Copy download link
history
blame
195 Bytes
import
json
import
logging
def
lambda_handler
(
event, context
):
logging.debug(
f"event:
{event}
..."
)
logging.debug(
f"context:
{context}
..."
)
return
{
"msg"
:
f"ciao
{json.dumps(event)}
."
}