Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
d0tpy
/
media_enhancer
like
0
Sleeping
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
6e416a8
media_enhancer
/
app.py
d0tpy
Create app.py
9a12466
verified
8 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}