Regular expression(RegEx) is a sequence of characters that forms a search pattern. Python RegEx is used for identifying a search pattern in…
In this blog post, we are going to make simple Books API using Django REST Framework package. Django REST Framework is the most powerful, f…
Debugger is a program that helps us to find what is going in our program. You can use debugger to execute each line of code, print variable…
In this blog post, we connect MySQL database with Django project from scratch using mysqlclient python package. Here we will used MySQL Wor…
Implementing infinite scrolling with django as like the web pages in facebook, twitter, instagram using django's Paginator class and a jQu…
Before starting this tutorial on Exception Handling, we have to know why actually we want to trap(or handle) errors. For the answer, we han…
Object Oriented Programming (OOP) is a method of structuring a program by clustering common properties and behavior into individual objects…