How to create Email sender app in Django?

Django Application Email Sender with Summernote

In this Python Django tutorial, we are going to learn how to create Email sender app in Django. Through this application, we would be able to send emails through a third-party app. Email sender applications send messages usually over the internet and can be used for a variety of uses like customer service, businesses, and … Read more…

How to use Summernote editor in Django?

Add Summernote editor in Django

In this Python Django tutorial, we will come to know about the use and implementation of another type of rich text editor in our Django project. In this tutorial, we will discuss how to use the Summernote Editor in Django. Along with that, we will implement the necessary steps to integrate the Summernote Editor in … Read more…

How to use Quill Editor in Django?

Quill Editor in Django

In this Python Django tutorial, we will learn how to integrate another type of rich text editor into our Django project. And in this tutorial, we will explain how to use the Quill Editor in Django. Also, we will discuss the steps to integrate the Quill Editor into the Django Admin and Django Forms using examples. First, … Read more…

How to use CKEditor in Django?

using ckeditor in django form

In this Python Django tutorial, we will understand how to integrate a rich text editor into our Django project. And in this tutorial, we will explain how to use the CKEditor in Django. Moreover, we will also see the steps to integrate the CKEditor into the Django Admin and Django Forms using examples. First, let … Read more…

Django CRUD with Bootstrap Template

python django crud with bootstrap using class based view

In this Python Django tutorial, I will explain to perform Django CRUD with bootstrap Template. I was given a project to develop an application for a fitness club gym that would register gym members, show their information, update their fitness records, and delete members who left the gym. In order to conduct CRUD activities on … Read more…

Validate URL string in Python Django

validate URL string in django example

In this Python Django tutorial, I will explain how to validate URL string in Python Django in simple steps. I’ve been developing a website to download YouTube videos recently using the Django web framework. Additionally, I must validate URL string in Python Django project. In order to download the YouTube video into your internal system … Read more…

How to delete session property in Django

deletion of session property using django example

In this Python Django tutorial, I will explain how to delete session property in Django in simple steps. Recently, I have been creating a Company Management System using the Django web framework. And I have got a requirement for the creation of a session on login of the employee and on logout, it needs to … Read more…

AttributeError module object has no attribute in Django

AttributeError module object has no attribute django

In this Python Django tutorial, I will explain how to solve AttributeError module object has no attribute in Django. Recently, when I was working on a Django project, I came across an issue where I have an error “module object has no attribute”. So, after looking at multiple solutions, I found a solution that helped … Read more…

How to get user IP address in Django

get visitor IP address in Django

In this Python Django tutorial, I will explain how to get user IP address in Django in simple steps. I’ve recently developed a project using the Django web framework in which I have a requirement for the user’s IP address. So, here we will cover the steps that we can follow to get user IP … Read more…

How to Parse CSV in Python Django

How to parse CSV using Python Django

In this Python Django tutorial, I will explain how to parse CSV in Python Django in simple steps. Recently, I have been creating a website using the Django framework. And I have a number of data items in a CSV file to upload to the Django model. So, I have done the research and created a logic for … Read more…