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 View Args Through URL

having trouble understanding where I went wrong here. Concerning using the correct arguments in the route or function

I'm having trouble understanding where I went wrong here. Concerning using the correct arguments in the route or function? A little help would be greatly appreciated.

flask_app.py
from flask import Flask
from flask import request

app = Flask(__name__)


@app.route('/')
def hello():
     return 'Hello Student'
@app.route('/<name>',)
def index(name=''):
    name = request.args.gets('name', name)

1 Answer

Hey Andrew, A couple of things. 1) Your index() doesn't return anything. What should it return? 2) The method is get(), not gets(). But you don't need to get 'name' from request since you've added a route that passes in <name>. (What is the trailing comma in there for?)