Flask
Web Framework
Last updated
Web Framework
Last updated
The entry point for Flask applications is a file named app.py
.
By using @app.route
, we indicate the route we want to create. The path will be /
, which is the default route. We indicate this will be used for GET
.