Routers and ViewSets in Django Rest Framework

Routers and ViewSets in Django Reviewing Book

In this Python tutorial, You will learn how to implement routers and viewsets in Django in Django Rest Framework to generate some common view logic and API endpoints automatically. You will understand the routers and viewsets concept by building a small project based on the library system where users can create, remove, update, and view … Read more…

Payment Gateway Integration with Django

Payment Gateway Integration with Django Razorpay Interface

In this Python tutorial, I will show you payment gateway integration with Django, where you will understand how to use Razorpay as a payment getaway in your project. This tutorial is based on the previous tutorial How to Add Items to Cart in Django in Python, where you learned how to add the items to … Read more…

How to Add Items to Cart in Django in Python?

How to Add Items to Cart In Django Adding Product Quantity

In this Python tutorial, I will show how to add items to cart in Django where you will understand how to implement the cart functionality to add or remove the items to cart. So here I will continue with the previous Django application where you learned how to create a user profile in Django, you … Read more…

JWT Authentication Using Django Rest Framework

Refersh Token JWT Authentication Using Django Rest Framework

In this Python tutorial, I will show you how to perform JWT authentication using Django Rest Framework. Also, you will understand “What is JWT with its structure?” and how it works in detail. Additionally, you will implement all the JWT concepts by building the small Django project. In this Django project, I will show you … Read more…

How to Create Card with Button in Django

Product Page Create Card with Button in Django

In this Python tutorial, I will demonstrate to you how to create card with button in Django, where you will see how to make a product card in Django showing the product information such as product image, title, description, and button to view that product. Additionally, you will learn how to create a product page … Read more…

How to Create a Chip with Filter in Django

Chip with Filter in Django

In this Python tutorial, I will demonstrate to you how to create a chip with a filter in Django. You will learn to create a Django project based on the chip filter which is divided into two parts. In the first part, you will create a simple chip with information like icons, text, and links … Read more…

How to Create Search Autocomplete with Filter in Django

ScreenRecorderProject4_1

In this Python tutorial, I will show you How to Create Search Autocomplete with Filter in Django. Basically, you will learn how to create a search bar with a filter that shows an auto-suggested list of words based on whatever type in the search bar field. How to Create Search Autocomplete with Filter in Django … Read more…

How to Register User with OTP Verification in Django

How to Register User with OTP Verification in Django Verified OTP Successful

In this Python tutorial, we will learn “how to register user with OTP verification in Django”. we will build a project ‘otpverification’ that takes user information and send the OTP then verifies the OTP entered by the user to register the user in the database. To create the project follow the below steps: Open a … Read more…