Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Katpeeler
/
CSI4160_Docker_mHaP
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Katpeeler
commited on
Nov 14, 2023
Commit
c864593
·
1 Parent(s):
a782406
Create main.py demo
Browse files
Files changed (1)
hide
show
main.py
+8
-0
main.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from fastapi import FastAPI
2
+
3
+
4
+
app = FastAPI()
5
+
6
+
@app.get("/")
7
+
def read_root():
8
+
return {"Hello": "World!"}