Posts by Khushi Aswani

Author Biographical Info: Python programmer who is also interested in content writing.

Extend Django User Model with custom Fields

By Khushi Aswani

This tutorial will be based on custom fields in Django, how to extend/customize the default fields. This is going to be a very interesting task, without any further waste of time, .... Read More

Convert JSON data into an array in Django

By Khushi Aswani

This tutorial is to convert JSON data into an array in Django and print the same. We will create JSON Data and then we will use the dumps function. To do this task, we need JSON da.... Read More

Loop through array items in Django

By Khushi Aswani

In this tutorial, we will learn how to loop through array items in Django. You might have implemented loop through objects in Django to iterate over object items. Let’s discu.... Read More

Create a directory if it does not exist in Django

By Khushi Aswani

In this tutorial, we will check if the directory exists or not, if it doesn’t exist then we will create one. Python allows interacting with the operating system using module .... Read More

Detect if a directory exists or not in Django

By Khushi Aswani

This tutorial is all about detecting if a directory exists or not in Django. This tutorial will definitely help you to resolve the given task. By the end of this tutorial, hopefull.... Read More

Django Authentication Tutorial Step By Step

By Khushi Aswani

As the title says- “Django Authentication system”, this is a complete tutorial on how the authentication system works in Django. The authentication system consists of A.... Read More

Redirect in Django

Redirect in Django

By Khushi Aswani | March 11, 2022

Django is such an amazing framework! Everything built-in is for a reason and every time fascinates users to do even more and use a compact approach. You won’t believe redirecting is damn easy in Django. You can do it using a single word. You heard it right! A single word, not even a line or […] Read More

How to store a dictionary on a Django Model

By Khushi Aswani

This tutorial is all about how to use a dictionary model in Django which is easy and also helpful when you want to work with a dictionary. You might be thinking what is the task, i.... Read More

Related Posts