Contain Django apps(you can use these in your projects with few changes that are specified) and full projects.
python and pip should be downloaded already.
 pip install djangoDatabase link- PostgresqlDatabase Pgadmin link- Pgadmin (For handling the database)
- First create your databse by opening pgadmin after setup.
 - name-your choice
 - user-postgres
 - Then click create.
 - Changing the database in the django project(Go to your project folder and then in settings.py)
 - For examle-
 
      DATABASES = {
           'default': {
                        'ENGINE': 'django.db.backends.postgresql',
                        'NAME':'ecom', #(your specified name will be here)
                        'USER':'postgres',
                        'PASSWORD':'12345', #(your specified password of databse (you created while installation of the database) will be here.) 
                        'HOST':'localhost'
                      }
                    }
 
 </ul>