Django QuerySet | Database Model Queries Explained

In Django, we can easily create our database tables by defining some model classes. Here, we define different types of model fields also known as attributes. Within this framework, we have Django Queryset that we can use to access the attributes of different models. In Django QuerySet, we have different types of model queries that … Read more

Django Rest Framework – Create REST API, Serializers, CRUD

Django Rest Api, Serializers

Hey Coders, If you’re here then definitely you have a good know about Django framework and How it works. In this article, I’m going to explain your Django Rest Framework. Basically, we’ll discuss what is Django Rest Framework and how you can create a Rest API with this Rest Framework. What is Django Rest Framework? … Read more

Automation With Python Selenium (Browser Automation)

Automation With Python Selenium (GUIDE): Hey Learners, Today we’re back with interesting topic of Python Programming. In the real world, there are lots of repetitive nature of task that we’re doing again and again in same pattern. In the Python, We have a package called Selenium, Which helps us to automate some tasks that are … Read more

Exception Handling in Python: An Introduction(GUIDE)

Hey, Coders, Today, I’m going to explain Exception Handling in Python. In this article, I’m going to tell you that How you can Raise an Exception in Python and handle them to prevent your program from termination. What Is Exception ? During the program execution, Sometimes your programs terminated due to some unusual error occur, … Read more

Django Beginner Project – Random Password Generator

Hey Coders, In today’s article, We’re going to build a beautiful basic project in Django Framework. I think It will be one of the best project for all newbie beginners. So, If you just entered and have learned some basic things about Django then I think this Random Password Generator project would be best for … Read more

Web Scraping With BeautifulSoup in Python(GUIDE)

Web Scraping With BeautifulSoup 4 : In Python, If we want to gather data from someone’s website then we basically use APIs. But there are lot of websites, where they don’t have APIs. In such case, we can use scraping technique to scrap data from someone’s website. We can perform web scraping with BeautifulSoup Python … Read more

Sending Emails Using Python Script(GUIDE)

Hey Coders, Today’s going to be fun tutorial. Because Today, I’m going to give you A full fledged Guide that How To Send An Email using Python scripts. All the code and modules are explained below that will help you to sending emails using python. To send an Email in Python, First you need to … Read more

Classes in Python, constructors, Inheritance (Guide)

Classes In Python: Before Working and creating class in python, Let me give you a short description about Classes in Python. Basically, Classes is a blueprint of any object that you will be create. Example: Assume, you want to create a String variable object in Python for name field. Then you will be write code … Read more

Django Models Relationship – OneToMany, ManyToOne

Hey developers, Today I’m going to explain one of the confusing topic in Django. We’re going to discuss Django Models Relationship e.g OneToMany and ManyToMany. These are two basics relationship in Django database that are found quite confusing to beginners. So, I’m going to explain both of these two relationship one by one with an … Read more

Django Authentication Page Build- Login, SignUp(GUIDE)

How to build Authentication Form in Django

Hey Coders, Today we’re going to build a full authentication functionality in Python Django Framework. Here, We will be use Django built in Forms e.g: UserCreationForm, AuthenticationForm, Etc. In other, we will be use some bootstrap to design our NavBar. Description: In this tutorial, We will be design 4 functionality e.g: home, login, signup and … Read more