Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
om1chael
/
Pygame-story
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5952d33
Pygame-story
/
Code
/
app.py
om1chael
commit flask
5952d33
about 2 years ago
raw
Copy download link
history
blame
137 Bytes
from
fastapi
import
FastAPI
from
flask
import
Flask
app = Flask(__name__)
@app.get(
"/"
)
def
read_root
():
return
{
"Hello"
:
"World!"
}