python
35 lines · 6 steps
Building a URL shortener redirect in Flask
A Flask route resolves a short slug, records the click, and redirects to the target URL.
Explained by
highlit
1from datetime import datetime
2
3from flask import Blueprint, abort, redirect, request
4from sqlalchemy import func
5
6from .extensions import db
7from .models import ShortLink, ClickEvent
8
9bp = Blueprint("redirects", __name__)
10
11
12@bp.route("/<string:slug>")
13def follow(slug):
14 link = ShortLink.query.filter_by(slug=slug).first()
15 if link is None:
16 abort(404)
17
18 if link.expires_at and link.expires_at < datetime.utcnow():
19 abort(410)
20
21 link.click_count = ShortLink.click_count + 1
22 link.last_clicked_at = datetime.utcnow()
23
24 db.session.add(
25 ClickEvent(
26 link_id=link.id,
27 referrer=request.referrer,
28 user_agent=request.user_agent.string,
29 ip_address=request.headers.get("X-Forwarded-For", request.remote_addr),
30 occurred_at=datetime.utcnow(),
31 )
32 )
33 db.session.commit()
34
35 return redirect(link.target_url, code=301)
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Validate a resource exists and hasn't expired before acting on it, using distinct HTTP codes for each failure.
- 2Expressing a counter update as a column arithmetic expression pushes the increment into SQL and avoids read-modify-write races.
- 3Capturing request metadata alongside the redirect turns a plain link follow into analytics data.
Related explainers
python
from fastapi import FastAPI, WebSocket, WebSocketDisconnect app = FastAPI()
Building a WebSocket chat with FastAPI
websockets
broadcast
connection-management
Intermediate
9 steps
python
import time import uuid from django.utils.deprecation import MiddlewareMixin
Attaching per-request context in Django
middleware
request lifecycle
multi-tenancy
Intermediate
7 steps
python
import random from typing import Iterator, List
How reservoir sampling picks k items
reservoir-sampling
streaming
randomness
Intermediate
5 steps
python
import secrets from django.contrib.auth import authenticate, login from django.core.cache import cache
Two-factor login with OTP in Django
two-factor-auth
one-time-passwords
caching
Intermediate
9 steps
python
import re from functools import total_ordering from typing import Optional
Parsing and comparing semantic versions
regex
operator-overloading
sorting
Intermediate
7 steps
python
from typing import Any, Sequence, Mapping def render_markdown_table(
Rendering an aligned Markdown table in Python
string formatting
data transformation
closures
Intermediate
8 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/building-a-url-shortener-redirect-in-flask-explained-python-2e68/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.