python
33 lines · 7 steps
Handling a post form with a Flask Blueprint
A Blueprint route validates a WTForms form, saves a new post, and redirects on success.
Explained by
highlit
1from flask import Blueprint, render_template, redirect, url_for, flash
2from flask_login import login_required, current_user
3from flask_wtf import FlaskForm
4from wtforms import StringField, TextAreaField, SubmitField
5from wtforms.validators import DataRequired, Length
6
7from .models import db, Post
8
9bp = Blueprint("posts", __name__, url_prefix="/posts")
10
11
12class PostForm(FlaskForm):
13 title = StringField("Title", validators=[DataRequired(), Length(max=140)])
14 body = TextAreaField("Body", validators=[DataRequired(), Length(min=10)])
15 submit = SubmitField("Publish")
16
17
18@bp.route("/new", methods=["GET", "POST"])
19@login_required
20def create():
21 form = PostForm()
22 if form.validate_on_submit():
23 post = Post(
24 title=form.title.data.strip(),
25 body=form.body.data.strip(),
26 author=current_user,
27 )
28 db.session.add(post)
29 db.session.commit()
30 flash("Your post has been published.", "success")
31 return redirect(url_for("posts.detail", post_id=post.id))
32
33 return render_template("posts/new.html", form=form)
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Blueprints group related routes under a shared URL prefix so features stay modular.
- 2validate_on_submit collapses the GET-render and POST-handle branches into one clean function.
- 3Redirecting after a successful POST prevents duplicate submissions on browser refresh.
Related explainers
python
from fastapi import APIRouter, BackgroundTasks, Depends, HTTPException, status from pydantic import BaseModel, EmailStr from sqlalchemy.orm import Session
Building a signup endpoint in FastAPI
dependency-injection
request-validation
background-tasks
Intermediate
8 steps
python
from django import forms from django.utils import timezone from .models import Reservation
Multi-field validation in a Django ModelForm
form validation
cross-field validation
modelform
Intermediate
7 steps
python
from django import template from django.urls import reverse, NoReverseMatch from django.utils.html import format_html
Active nav-link template tags in Django
template tags
url routing
active state
Intermediate
7 steps
python
from functools import wraps import asyncio from fastapi import APIRouter, FastAPI, Request
Per-route request timeouts in FastAPI
decorators
async
timeouts
Intermediate
6 steps
python
import os from pathlib import Path BASE_DIR = Path(__file__).resolve().parent.parent.parent
How a Django settings module is wired
configuration
environment-variables
middleware
Intermediate
8 steps
python
def is_valid_card_number(number: str) -> bool: digits = [int(c) for c in number if c.isdigit()] if len(digits) < 13 or len(digits) > 19:
Validating card numbers with the Luhn check
checksum
validation
luhn-algorithm
Intermediate
6 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/handling-a-post-form-with-a-flask-blueprint-explained-python-fbd0/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.