Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
theonlykid
/
asas
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
theonlykid
commited on
Dec 15, 2023
Commit
9601889
·
1 Parent(s):
bf13c59
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route('/')
6
+
def hello_world():
7
+
return 'Goodbye, World!'
8
+
9
+
if __name__ == '__main__':
10
+
app.run(host='0.0.0.0', port=5000)