1 2 3 4 5 6 7 8
from flask import Flask app = Flask('app') @app.route('/') def hello_world(): return 'Hello!' app.run(host='0.0.0.0', port=8080)