How to Add Fake Data Using Faker Module in Django

Prosenjeet Shil
Django Unleashed
Published in
3 min readMay 31, 2024

In software development, especially during testing and development phases, having realistic data is crucial. However, manually creating large sets of test data can be time-consuming. This is where the Faker module comes in handy.

In this tutorial, We’ll walk through the process of importing Faker into a Django project to add fake data to a Student model. We’ll create views to generate and display this fake data.

Note: This article assumes you have a good understanding of Django and how to create a basic CRUD application. If you’re new to Django or need a refresher on building a CRUD application, you can read this comprehensive guide on building a Django CRUD application.

What is Faker?

Faker is a Python library that generates fake data for various purposes such as testing, populating databases, and creating realistic sample datasets. It supports a wide range of data types including names, addresses, emails, dates, and much more. Faker provides localized providers for generating data in different languages and regions, making it versatile for global applications.

Importing Faker with Django is straightforward. First, ensure you have Faker installed in your Django project. You can install it via pip:

pip install Faker

Once installed, you can start using Faker to generate fake data within your Django project.

  1. Define the Student Model:
    Let’s start by defining a simple Student model in Django’s models.py file.
# models.py

from django.db import models

class Student(models.Model):
name = models.CharField(max_length=100)
roll_number = models.IntegerField()
age = models.IntegerField()
grade = models.CharField(max_length=2)

2. Create a View to Add Fake Data:
Now, let’s create a view that generates fake student data using Faker when a specific URL endpoint is hit. We’ll use Django’s built-in views and the Faker module.

# views.py

from django.shortcuts import render
from django.http import HttpResponse
from .models import Student
from faker import Faker

# Create your views here.

def add_fake_data(request):
fake = Faker()
for _ in range(10): # Generating 10 fake students
Student.objects.create(
name=fake.name(),
roll_number=fake.random_int(min=1000, max=9999),
age=fake.random_int(min=15, max=18),
grade=fake.random_element(elements=('A', 'B', 'C', 'D'))

In this view, we use Faker to generate fake student data and save it to the database.

3. Create a View to Show Fake Data:
Next, let’s create a view to display the fake student data we’ve added.

# views.py

def show_fake_data(request):
students = Student.objects.all()
template_name = "fake_data.html"
context = {"students": students}
return render(request, template_name, context)

4. Create a Template to Display Fake Data:
Create a template (fake_data.html) to display the fake student data.

<!-- fake_data.html -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fake Student Data</title>
</head>
<body>
<h1>Fake Student Data</h1>
<ul>
{% for student in students %}
<li>Name: {{ student.name }}, Roll Number: {{ student.roll_number }}, Age: {{ student.age }}, Grade: {{ student.grade }}</li>
{% endfor %}
</ul>
</body>
</html>

5. Define URL Patterns:
Finally, don’t forget to define the URL patterns in your app/project’s urls.py file to link the views to specific URLs

# urls.py

from django.urls import path
from . import views

urlpatterns = [
path('add_fake_data/', views.add_fake_data, name='add_fake_data'),
path('show_fake_data/', views.show_fake_data, name='show_fake_data'),
]

Here are the screenshots of the webpages after hitting the respective URLs.

  • Adding Fake Data:
  • Showing Fake Data:

GitHub Repository:
You can find the complete code for this tutorial in the following GitHub repository: GitHub Repo Link

Conclusion:
In this tutorial, we’ve learned how to import the Faker module into a Django project to add fake data to a Student model. We created views to generate and display this fake data. Faker simplifies the process of generating realistic test data, making it easier to test your Django applications effectively.

--

--

Prosenjeet Shil
Django Unleashed

Python developer sharing insights on full stack development: Python, database management, Django, DRF, React JS, and more. Follow for tips and tutorials.