Home > Backend Development > Python Tutorial > Get started with Flask quickly: Simple installation and configuration guide

Get started with Flask quickly: Simple installation and configuration guide

WBOY
Release: 2024-02-20 10:10:07
Original
1112 people have browsed it

Get started with Flask quickly: Simple installation and configuration guide

Concise and easy-to-understand Flask installation and configuration tutorial, allowing you to get started quickly, specific code examples are required

Introduction:
Flask is a web development framework based on Python , simple, flexible and easy to use, it has gradually become a popular choice in the field of web development in recent years. This article will introduce the installation and configuration of Flask, and provide specific code examples to help beginners get started quickly.

1. Install Flask

  1. Make sure Python is installed: Go to the official Python website (https://www.python.org/downloads/), download and install the appropriate version of Python. After the installation is complete, you can enter the following command in the terminal or command prompt to verify whether Python is installed successfully:

python --version

If successful it displays The version number of Python indicates that Python has been successfully installed.

  1. Install a virtual environment: A virtual environment allows us to run multiple Python projects on the same computer at the same time without interfering with each other. Use the following command to install the virtual environment:

pip install virtualenv

  1. Create and activate the virtual environment: Go to the directory where you want to create the project, And run the following command to create a virtual environment:

virtualenv venv

Then, on a Windows system, activate the virtual environment using the following command:

venvScripts ctivate

Or on Linux/Mac systems, use the following command to activate the virtual environment:

source venv/bin/activate

  1. Install Flask: In an activated virtual environment, you can use the following command to install Flask:

pip install Flask

2. Create a simple Web application
Below we will create a simple Flask application to demonstrate how to use Flask.

  1. Create a new Python file (such as app.py) and enter the following code in the file:
from flask import Flask

app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello, Flask!'

if __name__ == '__main__':
    app.run()
Copy after login

The above code will create a Flask object and define a route , when accessing the root path of the website, a string containing "Hello, Flask!" will be returned.

  1. Run the app: In a terminal or command prompt, use the following command to run the app:

python app.py

The application will run on the default port of the local environment (usually 5000).

  1. Open the browser: Use the browser to open the following URL and check whether the page displays "Hello, Flask!":

http://localhost: 5000

3. Routing and view functions
The core idea of ​​Flask is to handle different URL requests by defining routing and view functions.

  1. Route definition: In Flask, routes are defined through decorators. For example, we can use the @app.route decorator to define a view function that handles the root path:
@app.route('/')
def index():
    return 'This is the home page'
Copy after login
  1. View function: A view function is a function used to handle URL requests. In the above example, the index function is a view function that returns a string as a response.
  2. Dynamic routing: In addition to the root path, we can also define routes with parameters. For example, we can use the following code to define a view function that handles user information:
@app.route('/user/<username>')
def get_user(username):
    return 'This is user: ' + username
Copy after login

In the above example, is a dynamic parameter that can match any value and will Values ​​are passed as parameters to the get_user function.

4. Templates and static files
Flask also provides support for templates and static files, which can easily generate dynamic pages and load static resources.

  1. Template: Flask uses Jinja2 template engine to generate dynamic pages. First, we need to create a templates folder in the project and create an HTML template file (such as index.html) in this folder. Then, use the render_template function in the view function to load and render the template:
from flask import render_template

@app.route('/')
def index():
    return render_template('index.html', title='Home')
Copy after login
  1. Static files: Flask uses the static folder to store static files, such as CSS, JavaScript, and images. After placing the static files into the static folder, you can use the special url_for function in the HTML template to load the static files:
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
Copy after login

The above is a concise tutorial on Flask installation and configuration. I hope it can help you get started quickly. Flask development. Of course, Flask has many other powerful functions, such as form processing, database integration, etc. You can learn more about it through the official Flask documentation (http://flask.pocoo.org/docs/). I wish you success in your Flask journey!

The above is the detailed content of Get started with Flask quickly: Simple installation and configuration guide. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template