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 Request args

Flask Requests args

I need the answer to this. Tried different ways, but instructions not clear. Give me the answer, not help. Thx.

flask_app.py
from flask import Flask
from flask import request

app = Flask(__name__)

@app.route('/')
def index():
    return 'Treehouse'
    return 'Hello {name}'.format(name='')

I found the answer (by googling). Seriously, the way questions are asked needs to be reviewed. Never had this much trouble on codeacademy. And questions don't just need to be related to previous tracks, but Based on previous tracks. You're not teaching anyone anything by asking unclear questions (though maybe I should get into the habit of simply copying the exact code previously went over and answering the question with that code, even if the question 'seems' to want something different, as many do.

1 Answer

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

The challenge asks "Import request from Flask. Then update the index view to return "Hello {name}", replacing {name} with a name argument in the query string."

from flask import Flask
from flask import request #<-- import 'request'

app = Flask(__name__)

@app.route('/')
def index(name='Treehouse'):  #<-- provide default value for 'name'
    name = request.args.get('name', name) #<-- get argument 'name' or use default name set above
    return 'Hello {name}'.format(name=name) #<-- update return string to accept variable 'name'