DEV Community

Cover image for Create Model in Django - Tutorial for Beginners
Sm0ke
Sm0ke

Posted on • Originally published at docs.appseed.us

Create Model in Django - Tutorial for Beginners

Hello Coders,

This article aims to help beginners to understand how to Create a Model in Django Framework by coding a new app from scratch and use mostly the terminal. The sample source code can be downloaded from Github (MIT License) and extended for hobby and commercial products. For newcomers, Django is a high-level Python Web framework built by experienced developers that encourages rapid development and clean, pragmatic design.

Thanks for reading! - Content provided by App Generator.



Let's Code Django

Check Python Version - recommended version is Python3

$ python --version
Python 3.8.4        <-- All good, we have a 3.x version
Enter fullscreen mode Exit fullscreen mode

Create/activate a virtual environment - Unix-based system

$ virtualenv env
$ source env/bin/activate  
Enter fullscreen mode Exit fullscreen mode

For Windows, the syntax is slightly different

$ virtualenv env
$ .\env\Scripts\activate
Enter fullscreen mode Exit fullscreen mode

Install Django

$ pip install django
Enter fullscreen mode Exit fullscreen mode

Create a new Django Project

$ mkdir django-create-model
$ cd django-create-model
Enter fullscreen mode Exit fullscreen mode

Inside the new directory, we will invoke startproject subcommand:

$ django-admin startproject config .
Enter fullscreen mode Exit fullscreen mode

Note: Take into account that . at the end of the command.

Setup the database

$ python manage.py makemigrations
$ python manage.py migrate
Enter fullscreen mode Exit fullscreen mode

Start the app

$ python manage.py runserver 
$
$ # Access the web app in browser: http://127.0.0.1:8000/
Enter fullscreen mode Exit fullscreen mode

At this point we should see the default Django page in the browser:

Django - Default Project Page.

Create a new Django application

$ python manage.py startapp sample
Enter fullscreen mode Exit fullscreen mode

Visualize the default SQL settings - config/settings.py

# File: config/settings.py (partial content)
...
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}
...
Enter fullscreen mode Exit fullscreen mode

Define a new model Books in sample application. The below changes should be added to sample/models.py:

# File: sample/models.py

from django.db import models                       

class Book(models.Model):                                 # <- NEW
    title            = models.CharField(max_length=100)   # <- NEW 
    author           = models.CharField(max_length=100)   # <- NEW
    publication_date = models.DateField()                 # <- NEW 
Enter fullscreen mode Exit fullscreen mode

Update Project Configuration to use the new model - The sample application must be added in the project configuration to INSTALLED_APPS section.

# File: config/settings.py (partial content)
...
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'sample'                        # <- NEW 
]
...
Enter fullscreen mode Exit fullscreen mode

Tip - for a quick check over latest changes we can run check subcommand.

$ python manage.py check
System check identified no issues (0 silenced).  
Enter fullscreen mode Exit fullscreen mode

Generate the SQL code

$ python manage.py makemigrations  # generate the SQL code
Migrations for 'sample':
  sample\migrations\0001_initial.py
    - Create model Book
Enter fullscreen mode Exit fullscreen mode

Apply changes on database

$ python manage.py migrate
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, sample, sessions
Running migrations:
  Applying sample.0001_initial... OK
Enter fullscreen mode Exit fullscreen mode

Use the model via CLI

Once the model is created we can use it via the Django shell

$ python manage.py shell
>>> 
>>> from sample.models import Book     # import the Book model in our context
>>> from django.utils import timezone  # used to provide the value for publication_date
>>>
>>> book1 = Book(title='The Adventures of Tom Sawyer', author='Mark Twain', publication_date=timezone.now() )
>>> book1.save()                       # save the new book
Enter fullscreen mode Exit fullscreen mode

List all books (using the CLI)

$ python manage.py shell
>>> 
>>> from sample.models import Book
>>> Book.objects.all()
<QuerySet [<Book: Book object (1)>]>
Enter fullscreen mode Exit fullscreen mode

We can see our new book retuned by the query. Let's improve the information that describe the object.


Django Model - add text representation of an object

To achieve this goal, we should define the __str__() method for the Book model

# File: sample/models.py

from django.db import models                       

class Book(models.Model): 
    title            = models.CharField(max_length=100) 
    author           = models.CharField(max_length=100)
    publication_date = models.DateField() 

    def __str__(self):       # <- NEW
        return self.title    # <- NEW
Enter fullscreen mode Exit fullscreen mode

Let's restart the Django console and check the results:

$ python manage.py shell
>>> 
>>> from sample.models import Book
>>> Book.objects.all()
<QuerySet [<Book: The Adventures of Tom Sawyer>]>
Enter fullscreen mode Exit fullscreen mode

Use the model via Admin Section

Django comes with an admin section our-of-the box that allows us to manage with ease all models defined in project.
To manage the Book model in the administration console we need to create a superuser (aka the admin) and after register the Book model to be visible in the admin section.

Create the superuser

$ python manage.py createsuperuser
sername (leave blank to use 'sm0ke'): admin
Email address: admin@appseed.us
Password: 
Password (again):
Superuser created successfully.
Enter fullscreen mode Exit fullscreen mode

Register Book model to be visible in the admin section - Edit sample/admin.py as below:

# File: sample/admin.py

from django.contrib import admin

from .models import Book        # <- NEW

admin.site.register(Book)       # <- NEW
Enter fullscreen mode Exit fullscreen mode

Authenticate as admin - http://localhost:8000/admin/

At this point we should see the Books model in the UI and able to execute CRUD operations.

Create Django Model - Admin Interface.


Create Django Model - List Model Items

Create Django Model - List Model Items.


Django Create Model - Edit Records

image


Thanks for reading! Feel free to AMA in the comments section.


More Django Resources

  • Read more about Django (official docs)
  • Start fast a new project using development-ready Django Starters

Oldest comments (6)

Collapse
 
crearesite profile image
WebsiteMarket

Too easy ... Keep writing!

Collapse
 
sm0ke profile image
Sm0ke

Thanks! I will, Dev has a really nice commnuity.
🚀🚀

Collapse
 
uithemes profile image
ui-themes

Nice and simple!

Collapse
 
sm0ke profile image
Sm0ke

Ty! 🚀🚀

Collapse
 
sm0ke profile image
Sm0ke

Hello @hseritt !
I will write more about simple topics. Seems to help more developers.
Regarding your suggestion, pyenv is indeed a great tool. Pretty sure will be widely adopted in the future.

Thanks for reading!