practical-tutorials / project-based-learning

Curated list of project-based tutorials

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typo in project "Build A Simple Web App With Flask"

Pawnpusher1245 opened this issue · comments

Expected Behavior

'''
from flask import Flask
app = Flask(name)

@app.route("/")
def index():
return "Index!"

@app.route("/hello")
def hello():
return "Hello World!"

@app.route("/members")
def members():
return "Members"

@app.route("/members/string:name/")
def getMember(name):
return name</string:name>

if name == "main":
app.run()
'''
Should create a simple flask application

Current Behavior

There is a syntax error in the code due to an incorrect closing tag </string:name> inside the route decorator.

Please assign me, I will have alook into this. Thanks

where is whole code by the way