Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
simoncck
/
my-browser-use-server
like
3
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
simoncck
commited on
Jun 21, 2025
Commit
31506fb
·
verified
·
1 Parent(s):
cb0384b
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 "Hello, World from Hugging Face Space!"
8
+
9
+
if __name__ == '__main__':
10
+
app.run(debug=True)