Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Flask Basics Welcome to Flask Multiply View

mike henning
mike henning
1,384 Points

Did we go over any of this?

I don’t know if this is a bug or I’m not learning but i don’t think we went through multiply before this question ??

flask_app.py
from flask import Flask

app = Flask(__name__)
app = Flask(__multiply__)

@app.route

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

Hey mike henning, this challenge is asking you to:

  • create a view (define a function),
  • give the view a route (using @app.route decorator)

Later tasks will add additional routes, with various combinations of arguments. This is along the same lines as your previous post.

You do not need to redefine app

Post back if you need more help. Good luck!!!