File size: 218 Bytes
c4a1cad
 
 
 
 
2081f7f
 
cf34f25
43a2ba7
2081f7f
1
2
3
4
5
6
7
8
9
10
11
from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello():
    return "Hello, World! This is my Flask app running on Hugging Face!"

if __name__ == '__main__':
    app.run(debug=True, host='0.0.0.0')