Flask
Creating a web application with Flask is a great way to get started with web development in Python. Below is a step-by-step tutorial for building a simple Flask application. We'll cover the essentials: setting up the environment, creating routes, using templates, and handling forms.
Step-by-Step Flask Tutorial
1. Set Up Your Development Environment
- Install Python: Make sure you have Python installed. Flask works with Python 3.7 and later.
- Create a Project Directory:
mkdir flask_tutorial cd flask_tutorial
- Set Up a Virtual Environment:
python -m venv venv source venv/bin/activate # On Windows, use `venv\Scripts\activate`
- Install Flask:
pip install Flask
2. Create a Basic Flask Application
- Create
app.py
:from flask import Flask app = Flask(__name__) @app.route('/') def home(): return "Hello, Flask!" if __name__ == "__main__": app.run(debug=True)
- Run the Application:
python app.py
Open a browser and navigate tohttp://127.0.0.1:5000/
to see the "Hello, Flask!" message.
3. Adding Routes and Views
Routes define the URLs that the application responds to. Views are the code that runs in response to a request for a specific route.
- Add More Routes:
@app.route('/about') def about(): return "This is the about page"
- Dynamic Routes:
@app.route('/user/<username>') def user_profile(username): return f"Hello, {username}!"
4. Using Templates
Flask uses Jinja2 as its templating engine. This allows you to separate HTML from your Python code.
- Create a Templates Folder:
Inside your project directory, create a folder called
templates
. - Add a Template File:
Create a file named
index.html
in thetemplates
folder:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Home</title> </head> <body> <h1>Welcome to Flask!</h1> <p>{{ message }}</p> </body> </html>
- Modify
app.py
to Use the Template:from flask import render_template @app.route('/') def home(): return render_template('index.html', message="This is a Flask app!")
5. Handling Forms
To handle forms in Flask, you can use request data and create forms using HTML.
- Create a Form in a Template (
form.html
):<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Form</title> </head> <body> <h1>Submit Your Name</h1> <form action="/greet" method="post"> <label for="name">Name:</label> <input type="text" id="name" name="name"> <button type="submit">Submit</button> </form> </body> </html>
- Create a Route to Display the Form:
@app.route('/form') def form(): return render_template('form.html')
- Create a Route to Handle Form Submission:
from flask import request @app.route('/greet', methods=['POST']) def greet(): name = request.form.get('name') return f"Hello, {name}!"
6. Static Files
Static files (like CSS and JavaScript) are stored in a static
folder in your project directory.
- Create a Static Folder:
Inside your project directory, create a folder called
static
. - Add a CSS File (
style.css
instatic
):body { font-family: Arial, sans-serif; background-color: #f8f9fa; }
- Link the CSS File in a Template (
index.html
):<head> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> </head>
7. Flask Application Structure
For larger applications, it's best to organize your code into multiple files and folders.
- Project Structure:
flask_tutorial/ ├── app/ │ ├── __init__.py │ ├── routes.py │ ├── templates/ │ │ └── index.html │ └── static/ │ └── style.css ├── venv/ ├── config.py └── run.py
- Modify
__init__.py
:from flask import Flask app = Flask(__name__) from app import routes
- Move Routes to
routes.py
:from app import app @app.route('/') def home(): return "Hello from the organized Flask app!"
- Create
run.py
:from app import app if __name__ == "__main__": app.run(debug=True)
8. Advanced Topics and Extensions
- Flask Extensions: Use extensions like
Flask-SQLAlchemy
for database integration,Flask-Migrate
for database migrations,Flask-WTF
for form handling, andFlask-Login
for user authentication. - Blueprints: Organize your application into components to make it modular.
- REST APIs: Use
Flask-RESTful
orFlask-Swagger
to build and document APIs.
Summary
Flask is a versatile and lightweight framework that allows you to start simple and scale up as needed. This tutorial covers the basics to get you started, but there's a lot more to explore in Flask's ecosystem. As you grow more comfortable with Flask, consider diving into its documentation and experimenting with its many extensions to build more complex and feature-rich applications.
For further reading and tutorials:
Feel free to ask more questions or for more detailed examples on any specific part of Flask!