About Author
[email protected]
Posts By [email protected]
Django CRUD (Create, Retrieve, Update, Delete) Function Based Views
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building web applications without dependency variables. Django is based on MVT architecture i.e. Model View Template architecture and performs CRUD operations. CRUD is a short abbreviation for Create, Retrieve, Update and Delete, these are the basic operations that one should know while making any web […]
How to automatically create API Documentation in Django REST Framework
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building Web APIs. It is written in python and allows the user to create some cool and awesome web applications. Most of the developers are very good in technical stuff, but are not so good in writing, and as we know documentation plays a very […]
Implement Search Autocomplete For Input Fields in Django
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building Web APIs. It is written in python and allows the user to create some cool and awesome web applications. In this blog we will learn how to implement search autocomplete for input fields in Django. Search autocomplete is something that we use most of […]
Integrating Facebook Like and Share Plugin Using Django
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building Web APIs. It is written in python and allows the user to create some cool and awesome web applications. In this blog we will learn about integrating facebook like and share plugin using Django. If you have ever used facebook you know that below […]
Create URL Shortener in Django from Scratch
Last updated on 16th November 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building Web APIs. It is written in python and allows the user to create some cool and awesome web applications. In this blog we will learn how to create a url shortener in django from scratch. This will be another good project for you to […]
Create Joke App in Django from Scratch
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building Web APIs. It is written in python and allows the user to create some cool and awesome web applications. In this blog we will learn how to create a joke app from scratch in Django from scratch. This will be another good project for […]
Built-In Error Views In Django
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
We all know what errors are, here I am specifically considering HTTP errors that we all have encountered while visiting websites. 404 pages not found, 500 server errors, 403 HTTP forbidden, etc. are some of the HTTP errors. When we design a website we also have to keep in mind that if somehow a user […]
Customize Django Admin Interface
Last updated on 16th November 2021 by [email protected] | Category: Django Tutorial
Django Admin Interface is a powerful and responsive GUI, which provides many features including CRUD for the ease of developers as well as users, as a developer you have used it many times but sometimes it needs customization right? So Django provides you the capability to even customize the Django admin interface isn’t it awesome […]
Introduction to Websockets and Django Channels
Last updated on 5th August 2022 by [email protected] | Category: Django Tutorial
We all have seen a website, know about what HTTP servers are, but what are these websockets and how are they even related to HTTPs you must be wondering this. What are Channels? Let’s understand each and every thing in detail. But before understanding all these we need to know about Asynchronous and Synchronous, now […]
Create News App in Django from Scratch
Last updated on 31st July 2021 by [email protected] | Category: Django Tutorial
Django REST Framework is a robust and flexible toolkit for building Web APIs. It is written in python and allows the user to create some cool and awesome web applications. In this blog we will learn how to create a news app in Django from scratch. This will be another good project for you to […]