Lesson 5
Screen 1 of 15
1) Components of a Web application
2) Web frameworks and Flask
3) Installing Python and packages
4) Creating your development environment
5) Building your first local Flask app
6) Running your first Flask app
7) Web application deployment
8) Deploying to PythonAnywhere
Lesson 5
Screen 2 of 15
Lesson 5
Screen 3 of 15
Lesson 5
Screen 4 of 15
This lesson requires that you:
The following components are required for your first Flask app:
Lesson 5
Screen 5 of 15
The components are explained on the following slides.
The import statement:
Imports the module Flask from the package flask
from flask import Flask
app = Flask(__name__)
Lesson 5
Screen 6 of 15
The Flask constructor:
Creates an instance of the Flask class.
__name__ is a Python predefined variable.
Decorator:
Creates an association between the URL ('/') and the function that follows.
Lesson 5
Screen 7 of 15
@app.route('/')
Note: A more complex web site with multiple pages would require a separate decorator for each page. Example:
@app.route('/')
def home():
return render_template('index.html')
@app.route('/signup', methods=['POST'])
def signup():
...
return ...
@app.route('/message')
def message():
...
return ...
Lesson 5
Screen 8 of 15
def hello_world():
return 'Hello World!'
Function:
Defines the function that is called when the corresponding URL is requested. In this case, the function returns the simple text message 'Hello World!'.
Note: A HTML template can be returned, instead of text. HTML templates should be placed in the directory "c\:~\myproject\app\static\templates". Example:
from flask import render_template
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html',
name=name)
The call to Flask's run method runs a Flask application locally:
This is the correct way to tell Python to run a Flask application, in a local development environment.
if __name__ == '__main__':
app.run()
Lesson 5
Screen 9 of 15
Lesson 5
Screen 10 of 15
There are many ways to write Python code. For example, you could...
Lesson 5
Screen 11 of 15
With Notepad++ open, create a new file called app.py
Add the code fragments from previous slides to the file:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()
Save the new file with the name 'app.py' into the c:\~\myproject\app directory.
We recommend you download and install the Notepad++ text editor, to write your first Flask app.
Please perform the following steps before you proceed:
Lesson 5
Screen 12 of 15
Refer to the previous slides if necessary.
Lesson 5
Screen 13 of 15
Test your knowledge of Flask by completing this short quiz.
You have completed Lesson 5 on building your first Flask app. Now you can:
Lesson 5
Screen 14 of 15
In Lesson 6 you will start and stop your Flask Web application "app.py" from a command prompt window.
Please proceed to Lesson 6.
Lesson 5
Screen 15 of 15