Authentication with django-allauth in Django Apps

Django AllAuth

Hi coders, In this article, I will show you how to setup Authentication with help of Django-allauth package in your Django App. We’re not going to use social authentication in this article. We will only see how to set up a normal username and password authentication with help of django-allauth. So, Let’s start this guide. … Read more

Django + Github Auto deployment to Heroku

Hello coders, In this article, I’ll show you How to deploy your Django web app to Heroku, and I will also show you how to use the auto-deployment feature of Heroku. Let’s see how to deploy Django application and enable the auto-deployment feature of Heroku. Django Auto deployment to Heroku First of all, we will … Read more

Filter() method in Python

The Filter() method is one of the most useful and inbuilt method in Python programming language. The filter() method is an iterator which takes two parameter, function and iterable_objects. Filter() Method: The filter method filters elements from given iterable_objects if any element from that object doesn’t satisfy the condition defined inside given function or return … Read more

Map() function in Python: Python Basics

Python Map function

Map() function is one of the useful functions in Python. In this article, we’re going to explore what is Map function and when you can use this function. Python map() function: A map function is also an iterable object. Basically, the Map function takes two parameters: one is a function and then the second is … Read more

Python Basic: Lists methods and operations (Basic Guide)

Hi coders, In this article, I’m gonna explain you Lists in Python. Basically we’re going to explore basic of lists in python and also we will explore methods and operation that you can perform on lists. Python Lists In python, lists are used to store data of different data types in ordered form. You can … Read more

Python Basic: String Methods and Operations (Basic Guide)

python string methods

Hey coders, today we are going to see basic string manipulation and methods in python programming language. What is String? In python, a string is a sequence of characters, where they are surrounded by double quotes(” “, or ‘ ‘). Anything between these quotes will be considered as a string, e.g: “My name is pk … Read more

How to deploy Django Web App on Heroku Cloud (GUIDE)

Hey developers, you have a DJANGO project and want to deploy it somewhere on a cloud platform. So, that you can show it to someone easily. Today, I’m gonna show you how you can deploy your Django app to the Heroku cloud platform. Heroku is one of the most powerful and reliable cloud platforms. On … Read more

Connect PostgreSQL Database With Django 3.0(Full Setup)

Django PostgrSQL DB

Hey coders, today I’m going to show you how you can download, setup, and configure your PostgreSQL database. Later on, I’ll also show you how to connect your Postgresql database with the Django web framework. If you want to know the full process then please read full article till the end. Connect PostgreSQL with the … Read more

Django Image Upload Using Model Forms | Django Tutorial

Hey coders, today we’re going to see that you can add and upload images by using Django Model Form. Remember, It’s different than static images because we use static images just to display our images to somewhere on our website. But here, we want that anyone can upload images by using Django Model forms. If … Read more