Vinayak Nishant

Django MVT Architecture: A Fresh Take on Classic MVC

In this article, we will talk about the Django MVT architecture and how it differs from the long-existing MVC architecture. So let’s get right into the topic and understand the MVT architecture. Django’s Model-View-Template (MVT) is a fresh take on the classic Model-View-Controller (MVC) design pattern. While the Model’s function remains consistent, Django’s View encompasses

Django MVT Architecture: A Fresh Take on Classic MVC Read More »

Django PostgreSQL – How to Set up and Use a PostgreSQL database with Django?

In this article, we will learn about Django PostgreSQL Database systems. Here we perform similar operations as we did with the Django MySQL earlier. This article will help those who are interested in using PostgreSQL instead of MySQL. What is PostgreSQL? Similar to the MySQL Database management system, PostgreSQL is another type of RDBMS used

Django PostgreSQL – How to Set up and Use a PostgreSQL database with Django? Read More »

Django Class-Based Views – How to Build Class-Based Django Views?

In this article, we will learn how to use Django Class-Based Views with our Django REST API and then later change our function-based views to the Class-Based one. Difference Between Class-Based Views vs. Function-Based Views In the earlier article, we made the entire Rest API webpage using function-based views. Using function-based views, we can’t extend

Django Class-Based Views – How to Build Class-Based Django Views? Read More »