Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sky-meilin
/
anycoder-70a55eed
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sky-meilin
commited on
Mar 4
Commit
66c34e7
·
verified
·
1 Parent(s):
21c1b3c
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-1
app.py
CHANGED
Viewed
@@ -1 +1,8 @@
1
-
git
clone
https://huggingface.co/spaces/sky-meilin/anycoder-70a55eed
1
+
from
fastapi
import FastAPI
2
+
3
+
app = FastAPI()
4
+
5
+
@app.get("/")
6
+
def greet_json():
7
+
return {"Hello": "World!"}
8
+