Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

channonhall
12,247 PointsHow do you Import flash from Flask?
Oh dear I think I'm asking a stupid question But if someone helps me that would REALLY help Thanks! :D
from flask import Flask, redirect, url_for, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template("index.html")
@app.route('/fishy')
def fishy():
return redirect(url_for('index'))
import flash
1 Answer
William Li
Courses Plus Student 26,865 PointsTo do that, just add flash to the end of the import statement
from flask import Flask, redirect, url_for, render_template, flash
channonhall
12,247 Pointschannonhall
12,247 PointsThanks Again william! It's always the Tiny stuff that I get stuck on.