Spaces:
Sleeping
Sleeping
from flask import Flask | |
app = Flask(__name__) | |
def home(): | |
return 'Hello, this is the homepage!' | |
def hello(): | |
return 'Hello from the custom route "/hello"!' | |
if __name__ == '__main__': | |
app.run(host='0.0.0.0', port=5000) | |