from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return "Welcome to my website!"
@app.route("/about")
def about():
return "This is the about page."
@app.route("/contact")
def contact():
return "Get in touch with me at [email protected]"
if __name__ == "__main__":
app.run(debug=True)Following packages are not supported: flask