Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
alanchen1115/Linebotpic
JasonFinley0821
/
Linebotpic
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dotku
commited on
Aug 27, 2023
Commit
feca41c
·
1 Parent(s):
202276a
Create main.py
Browse files
Files changed (1)
hide
show
main.py
+7
-0
main.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from fastapi import FastAPI
2
+
3
+
app = FastAPI()
4
+
5
+
@app.get("/api/python")
6
+
def hello_world():
7
+
return {"message": "Hello World"}