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

Malcolm Bonner
seal-mask
.a{fill-rule:evenodd;}techdegree
Malcolm Bonner
Full Stack JavaScript Techdegree Student 405 Points

non-200 response

I am getting a non-200 response error on my code and I'm not sure why.

flask_app.py
from flask import Flask
from flask import request

app = Flask(__name__)

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

1 Answer

Simon Coates
Simon Coates
28,694 Points

I'm not familiar with flask - at all. or python, but the following seems to work

from flask import Flask
from flask import request

app = Flask(__name__)

@app.route('/')
def index():
    return 'Hello '+request.args.get('name')
Simon Coates
Simon Coates
28,694 Points

so you don't need to display {}, and it didn't like how you were trying to access the name. I'm not sure the above is the preferred way to get a parameter for flask (some similar system create parameters using the URL and wildcards - not sure about flask).