Your URL routing is
@app.route("/view/<title>")
and the function is
def view(title, note):
so either
@app.route("/view/<title>/<note>/")
or
def view(title):
...
1.4m articles
1.4m replys
5 comments
57.0k users