Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kia09
/
Major_Project_1
like
0
Sleeping
App
Files
Files
Community
8
Fetching metadata from the HF Docker repository...
Kia09
commited on
Apr 29, 2025
Commit
7e2bd1e
·
verified
·
1 Parent(s):
5129842
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from fastapi import FastAPI
2
+
3
+
app = FastAPI()
4
+
5
+
@app.get("/")
6
+
def greet_json():
7
+
return {"Hello": "World!"}