Tag: Django Tutorial
Best Django Tutorial with Real World Problems on Ajax, Web Development, Front-End Framework, JQuery, JSON, and Javascript, Python Libraries, API’s, Rest framework and much more.
Creating Charts in Django Web App I How to Use Chart.js with Django
Last updated on 25th November 2021 by Apoorv Garg | Category: Django Tutorial
Learn how to effectively render data on a Web App by creating charts in Django Web App. Adding beautiful charts onto you web app increases it’s readability and user friendliness. Render large database into any type of graph or chart greatly enhancing its readability by employing charts on to your web app. This can very […]
Easy REST Authorization:Django JSON Web Token
Last updated on 25th November 2021 by Apoorv Garg | Category: Django Tutorial
JSON Web Token better known as JWT is a JavaScript based system to provide encryption and authorization for any Web App using JavaScript or any of its Frameworks like NodeJS. The following article explains how JWT works along with a basic tutorial explaining its integration with Django Rest Framework. How JWT works? JWT is a […]
How to Connect PostgreSQL Database in Django Project
Last updated on 9th May 2021 by Apoorv Garg | Category: Django Tutorial
Learn how to connect a PostgreSQL database with Django App. Django is the most popular web development python framework. It is an open-source web framework and since it is written in Python programming language it is backed by a strong community of programmers. It allows for scalability, re-usability, and rapid development. PostgreSQL is a powerful, […]
Django REST Framework Tutorial – Change and Reset Password
Last updated on 4th August 2022 by H Sayyed | Category: Django Tutorial
In this tutorial you will learn how to create Change / Update Password and Reset / Forgot Password API using Django Rest Framework. This tutorial is a second part of our Django REST Framework Tutorial – Register Login Logout API. Change Password API using Django Rest Framework Django Change Password API will create a new […]
Django REST Framework Tutorial – Register Login Logout API
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
In this tutorial, you will learn how to create User Registration, Login and Logout System using Django Rest Framework. For this tutorial we will use Django Rest Knox Library for Token Based Authentication System for Rest Framework. Knox provides easy to use authentication for Django REST Framework. Knox authentication is token based, similar to the TokenAuthentication […]
How to use Python Socket IO with Django
Last updated on 4th December 2021 by H Sayyed | Category: Django Tutorial
Learn to use socketio with django. This tutorial is update to django-socketio. In this tutorial i will explain how to use python-socketio Library with Django Integrations. Learn how to integrate Python Socket IO with Django WsGi Server and build real time applications like games, chat, chatbot. This is an alternative to Django Channels where it […]
Django React Setup – Best Project Structure
Last updated on 9th May 2021 by H Sayyed | Category: Django Tutorial
Learn the best way to setup your Django and ReactJS Project by following best folder structure practice. We will use Django Rest Framework with ReactJS with to create interactive beautiful dynamic website. This is best Folder structure for React and Django REST. Let’s get started Django + ReactJS Project Setup Django and Django Rest Framework […]
Host Django Website Application for Free in 5 Minutes
Last updated on 27th November 2021 by H Sayyed | Category: Django Tutorial
Learn how to Host Django Application for free at no cost. Simple and Easy step for hosting Django Website on the Internet without any money within 5 minutes. We will be using Python Anywhere for hosting our application on Cloud. Free Hosting – host without cost which has Simple and Ready to use Python Environment […]

Django Social Login – Facebook, Twitter and GitHub
Last updated on 13th November 2021 by Adam Smith | Category: Django Tutorial
Learn Django Social Auth ( django social network tutorial ). How to implement Django Facebook, Twitter and GitHub Login authentication using the social-auth-app-django library in Django. Python social-auth-app-django is easy to set up social authentication/registration mechanism with support for several frameworks and auth providers. You can create social login using social-auth-app-django for Facebook, Twitter, GitHub, […]

Multiple Django projects using one virtualenv environment
Last updated on 27th November 2021 by H Sayyed | Category: Django Tutorial
In this tutorial, you will learn how to run two or more Django Projects in one virtual environment. This seems to be tricky and funny but has some pros and cons. Let’s say you are running two Projects A and B in one virtualenv. Project A requires 3 libraries and Project B Requires 2, but […]