Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
getzero11
/
Puppeteer
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Puppeteer
/
app.py
getzero11
Upload app.py
1ea40fb
verified
17 days ago
raw
Copy download link
history
blame
contribute
delete
116 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}