import time from flask import Flask app = Flask(__name__) print("hello world") @app.route('/') def hello_world(): return 'Hello, World!'