Article Archive

How to Protect Sensitive Data in Django – Python Decouple
Last updated on 27th November 2021 by H Sayyed | Category: Django Tutorial
Protect Sensitive Data in Django – Django database password security. django decouple. The Internet is full of data, which is used for legal and illegal purposes. As a developer, we need to keep our system protect and secure. Securing applications will help our system to be protected from misuse. Security should be priority one once […]
How to Install Django on Windows – 7, 8.1, 10
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
Install django windows . Django is a free, open-source web framework written in the most popular python programming language and used by millions of developers every year. Its popularity is due to its friendliness to both beginners and advanced programmers with lots of python libraries and support. In this tutorial, you’ll learn how to install Django on […]

Django Dynamic Template – Render Dynamic Variable/Data
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
Django has Template System for Display Content on Web. Using Views and Django Template we can display data in the template. There are lots of Django Template Tags and Filter for displaying data dynamically. We can pass the Model data to view for rendering it in the template. In this tutorial, you will learn how […]
Django Bootstrap 4 – Integrate Template Example
Last updated on 27th November 2021 by H Sayyed | Category: Django Tutorial
Learn How to make Django Bootstrap 4 Template. Django Template System provides a way to separate Python Code and HTML Code. Django is a Popular Web Framework. It can be also used by front-end frameworks like AngularJS, ReactJS, VueJS. We can use Template Tags and Filters in HTML Code. It will allow us to use […]

Django Best Practice: Configuring Local Settings File
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
Django local_settings. Developing Django Application needs configurations and settings. Managing these configurations is a must for projects. We need to configure projects for different environments like testing, staging, production, and development. It is important and mandatory for the developers, to manage and separate default and new configurations. Django does not provide a way to have […]

How to Connect MySQL Database in Django Project
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
Learn how to connect MySQL database with Python Django windows. Django is a free, open-source web framework written in the most popular Python programming language. It allows for scalability, re-usability, and rapid development. Django can be connected to different databases like SQLite, MySQL, PostgreSQL, etc. In this tutorial, you will learn how to connect mysql […]
How to Django Create Custom Template Tags and Filters
Last updated on 27th November 2021 by H Sayyed | Category: Django Tutorial
In this tutorial, you will learn how to django create custom template tags. There are lots of built-in template tags and filters in Django. But sometimes these tags are of no use or we need more functionality to do. For such a situation we create our own tags and filters. When you define custom tags […]
How to Signup User and Send Verification Email in Django
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
In this tutorial, you’ll learn how to create a Registration Form for User Signup. We’ll add more functionality by adding validation and sending a confirmation link on users’ email. With confirming account user cannot sign in. You can also find this tutorial code on GitHub. Django registration with confirmation email. Django-registration send activation email. Learn […]
How to Create Signup / Registration View in Django
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
In this tutorial, we will learn how to create ( Django signup view)Sign Up or Registration Form in Django for User Registration. We will be using UserCreationForm which is an in-built form for User Registration. User Sign Up can be created by the third person or by self. Both strategics can be achieved by this […]
Django Change Password & Reset Forgot Password Using Built-in Functions
Last updated on 6th December 2021 by H Sayyed | Category: Django Tutorial
In this short tutorial, I will explain how to use Change Password and Reset or Forgot Password Functionality in Django. The process for Password Reset involves sending emails. For that matter, we are going to use console email backend and check if everything is functioning. Follow this tutorial how to send email using SMTP Email […]