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

How To Add Email Subscription To WordPress Blog

Hi Bloggers, do you want to add an email subscription to your WordPress blog, then you’re at a right place. Because In this Article, I’m going to Guide you that How You can add beautiful and customizable email subscription forms to you WordPress website. And Later on How you could send emails to your subscribers. … 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

How To Add Bootstrap 4 with Django Crispy Forms

Hi Coders, Today, I’m going to give you full tutorial about “django-crispy_forms”. It will help you to customize your django-forms with Bootstrap 4 themes. Here, you don’t need to define or write bootstrap code explicitly to customize your django forms. Here, I’ll give you full tutorial that how you could install crispy-forms and use it … Read more