Learn how you can develop a back-end in Django once and then use it on as many platforms as you want without any customization using the Django REST Framework. REST framework has had back end developers flocking to it ever since Flickr launched its own REST API in August of 2004. Due to the simple… Continue Reading »
Category: Django
Welcome to Django Tutorial for beginners and experts, an approach to learning web-development with Django Web Framework. In this tutorial, you will be progressively building more advanced and complex web applications and API’s. This tutorial will help you to get deep knowledge of Django Framework and Python Programming Language. You will be becoming an expert to make your own custom model, email integration in Django, foreign keys, authorization, permissions, middleware, templates, forms, views, and much more stuff. You will be also learning Django ORM to play with Database like MySQL, SQLite, PostgreSQL with even no knowledge of SQL queries.
By the end of this tutorial, you should feel confident creating your own Django Projects from scratch and even start your own startup and personal projects.
Django Everywhere-Host Your Django App for Free on Heroku
Learn how you can deploy your Django Application on the internet for free for no cost. A Simple and Easy service for hosting any 5 web app is provided by Heroku without any money. We will be using a Django App to showcase this service, hosting our application on Cloud. Heroku is a free cloud… Continue Reading »
How to Connect PostgreSQL Database in Django Project
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,… Continue Reading »
How To Setup and Install PostGreSQL in Windows

PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development. Its installation and setup is a simple one time operation, thus is suitable for development. It has a wide range of uses and applications throughout the field of technology. Thus it has earned a strong reputation for its reliability,… Continue Reading »
Django REST Framework Tutorial – Change & Reset Password
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… Continue Reading »
Django REST Framework Tutorial – Register Login Logout API
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… Continue Reading »
How to use Python Socket IO with Django
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… Continue Reading »
Django React Setup – Best Project Structure
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… Continue Reading »
How to create a Unique Slug in Django Tutorial
In this tutorial, you will learn how to create unique Slug in Django. Some of the time you need Slug in your URL instead of Unique ID. This tutorial will teach how to make unique slug in your model. We can use slug field to identify objects in url. Let’s say you have Employee Model… Continue Reading »
How to Upload and Display Image in Django
Learn how to Upload and Display Images in Django and store it in model using ImageField. You can upload multiple images using this Django Tutorial. For uploading any image or file in Django, we need to install Pillow – pip install Pillow So the first step is add bellow code in settings.py of your django… Continue Reading »