Learning Django. Part One: Building a Blog Application

Learning Django. Part One: Building a Blog Application

Author
winstonmhango23
Published
March 28, 2025
Reading Time
18 min read
Views
25
This chapter will give you a general overview of the framework. It will guide you through the different major components to create a fully functional web application: models, templates, views, and URLs. You will gain an understanding of how Django works and how the different framework components interact.
Full image
C:\Users\winstonmhango23>python --version
Python 3.12.6

C:\Users\winstonmhango23>
D:\BLOG POSTS\DJANGO SERIES>mkdir django_blog

D:\BLOG POSTS\DJANGO SERIES>cd django_blog

D:\BLOG POSTS\DJANGO SERIES\django_blog>py -m venv venv

D:\BLOG POSTS\DJANGO SERIES\django_blog>
D:\BLOG POSTS\DJANGO SERIES\django_blog>venv\scripts\activate
(venv) D:\BLOG POSTS\DJANGO SERIES\django_blog>pip install django
Collecting django
  Downloading Django-5.1.5-py3-none-any.whl.metadata (4.2 kB)
Collecting asgiref<4,>=3.8.1 (from django)
  Using cached asgiref-3.8.1-py3-none-any.whl.metadata (9.3 kB)
Collecting sqlparse>=0.3.1 (from django)
  Using cached sqlparse-0.5.3-py3-none-any.whl.metadata (3.9 kB)
Collecting tzdata (from django)
  Downloading tzdata-2025.1-py2.py3-none-any.whl.metadata (1.4 kB)
Downloading Django-5.1.5-py3-none-any.whl (8.3 MB)
   ---------------------------------------- 8.3/8.3 MB 2.2 MB/s eta 0:00:00
Using cached asgiref-3.8.1-py3-none-any.whl (23 kB)
Using cached sqlparse-0.5.3-py3-none-any.whl (44 kB)
Downloading tzdata-2025.1-py2.py3-none-any.whl (346 kB)
Installing collected packages: tzdata, sqlparse, asgiref, django
Successfully installed asgiref-3.8.1 django-5.1.5 sqlparse-0.5.3 tzdata-2025.1

[notice] A new release of pip is available: 24.2 -> 25.0
[notice] To update, run: python.exe -m pip install --upgrade pip

(venv) D:\BLOG POSTS\DJANGO SERIES\django_blog>
(venv) D:\BLOG POSTS\DJANGO SERIES\django_blog>pip list
Package  Version
-------- -------
asgiref  3.8.1
Django   5.1.5
pip      24.2
sqlparse 0.5.3
tzdata   2025.1

(venv) D:\BLOG POSTS\DJANGO SERIES\django_blog>
Last login: Tue Feb  4 07:03:07 on ttys001
macbookair@MacBookAirs-MacBook-Air DJANGO_SERIES % mkdir django_blog
macbookair@MacBookAirs-MacBook-Air DJANGO_SERIES % cd django_blog
macbookair@MacBookAirs-MacBook-Air django_blog % python3 -m venv venv
macbookair@MacBookAirs-MacBook-Air django_blog % venv/bin/activate
zsh: permission denied: venv/bin/activate
macbookair@MacBookAirs-MacBook-Air django_blog % source venv/bin/activate
(venv) macbookair@MacBookAirs-MacBook-Air django_blog % 



(venv) macbookair@MacBookAirs-MacBook-Air django_blog % pip install django
Collecting django
  Downloading Django-5.1.5-py3-none-any.whl.metadata (4.2 kB)
Collecting asgiref<4,>=3.8.1 (from django)
  Downloading asgiref-3.8.1-py3-none-any.whl.metadata (9.3 kB)
Collecting sqlparse>=0.3.1 (from django)
  Downloading sqlparse-0.5.3-py3-none-any.whl.metadata (3.9 kB)
Downloading Django-5.1.5-py3-none-any.whl (8.3 MB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.3/8.3 MB 238.7 kB/s eta 0:00:00
Downloading asgiref-3.8.1-py3-none-any.whl (23 kB)
Downloading sqlparse-0.5.3-py3-none-any.whl (44 kB)
Installing collected packages: sqlparse, asgiref, django
Successfully installed asgiref-3.8.1 django-5.1.5 sqlparse-0.5.3

[notice] A new release of pip is available: 24.3.1 -> 25.0
[notice] To update, run: pip install --upgrade pip
(venv) macbookair@MacBookAirs-MacBook-Air django_blog % 


(venv) macbookair@MacBookAirs-MacBook-Air django_blog % pip list
Package  Version
-------- -------
asgiref  3.8.1
Django   5.1.5
pip      24.3.1
sqlparse 0.5.3
Full image
Full image
Last login: Tue Feb  4 12:58:41 on ttys003
macbookair@MacBookAirs-MacBook-Air django_blog % source venv/bin/activate
(venv) macbookair@MacBookAirs-MacBook-Air django_blog % django-admin startproject blog_project
(venv) macbookair@MacBookAirs-MacBook-Air django_blog % cd blog_project
(venv) macbookair@MacBookAirs-MacBook-Air blog_project % code .
(venv) macbookair@MacBookAirs-MacBook-Air blog_project % python manage.py runserver
Watching for file changes with StatReloader
Performing system checks...

System check identified no issues (0 silenced).

You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run 'python manage.py migrate' to apply them.
February 04, 2025 - 15:55:03
Django version 5.1.5, using settings 'blog_project.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Full image
(venv) macbookair@MacBookAirs-MacBook-Air blog_project % tree blog_project
blog_project
├── __init__.py
├── __pycache__
│   ├── __init__.cpython-313.pyc
│   ├── settings.cpython-313.pyc
│   ├── urls.cpython-313.pyc
│   └── wsgi.cpython-313.pyc
├── asgi.py
├── settings.py
├── urls.py
└── wsgi.py

2 directories, 9 files
Full image

Share this article

Stay Updated

Subscribe to our newsletter for new course alerts, learning tips, and exclusive offers.

We respect your privacy. Unsubscribe at any time.

Discussion (1)

W

winston

30 minutes ago

This looks cool

winstonmhango23

Technical Writer & Developer

Table of Contents

Stay Updated! Join our waitlist to get notified about new courses.

© 2025 .