1
I have this simple code available on the Flask page:
from flask import Flask
app = Flask(__name__)
@app.route("/")
def hello():
return "Hello World!"
if __name__ == "__main__":
app.run()
As the Service rises, everything works perfectly.
However, by adding something to app.rote
, will return a 404.
Ex: app.route("/Teste")
Why does that happen ?
Got it. I took the test and it worked 100%. Thanks.
– Victor Tadashi