Django App
Django is python web framework to develop the complete web app. Django provides rest api feature to develop the restful api using python language. Django is used Python language to create django web app .
Prerequisite
- Python Language, here is link to downlaod python.
- Python Coding
Setup for Django App
2) If Python done installing. Be sure python already set environment variable.
3) If Python not already set python environment variable follow the link to set python environment variable.
4) Download and Install PIP in windows. Follow the blog to install PIP in windows.
5) Django app need virtual environment to install virtual environment use command
pip install virtualenvwrapper-win
6) For create virtual environment use command
mkvirtualenv project_name
# example
mkvirtualenv MovieTodoList
7) For opening created virtual environment use command
workon project_name
# example
workon MovieTodoList
8) Now install all libraries which is necessary for MovieTodoList Python Django Project. Example
pip install django
9) Create Django Project for application or website
django-admin startproject MovieToDoList
This will create MovieToDoList django project. Open this project in any python editor. I prefer Visual Code
In this MovieToDoList project directory some files which is needed for django app is created when you create django app.

In this above list having manage.py file which is your main file for starting your django app
10) To start or run your django app the command is
python manage.py runserver
Now your app is successfully started. Bellow Image is your app page
The install worked successfully! Congratulations!