Skip to content

Instantly share code, notes, and snippets.

@TheMuellenator
Forked from angelabauer/main.py
Last active May 17, 2024 08:33
Show Gist options
  • Save TheMuellenator/29acd670326c6313bc2b8f7e66fd441f to your computer and use it in GitHub Desktop.
Save TheMuellenator/29acd670326c6313bc2b8f7e66fd441f to your computer and use it in GitHub Desktop.
Day 61 L464 - Installing Flask-WTF
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def home():
return render_template('index.html')
@app.route("/login")
def login():
return render_template("login.html")
if __name__ == '__main__':
app.run(debug=True)
@gureumjigi
Copy link

For everyone who suffers from ImportError:
type this code below in your Terminal.

pip install Flask==2.0.3

This worked for me. Good Luck!

@inavadeep1205
Copy link

app = Flask(__name__)

@app.route("/")
def login():
    return render_template("login.html")

app.run()

@stevenson007
Copy link

I still have this error message after upgrading the framworks.
Capture

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment