Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hashir672
/
Python-red-gen-space
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hashir672
commited on
Jan 6, 2024
Commit
bf1b873
·
1 Parent(s):
3e9dba1
Create main.py
Browse files
Files changed (1)
hide
show
main.py
+9
-0
main.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route('/')
6
+
def hello_world():
7
+
return 'Hello World'
8
+
9
+