There are many different web frameworks under Python. Django is the most representative of the heavyweight players. Many successful websites and apps are based on Django.

Django is an open source web application framework written in Python.

Django Admin management tool syntax

Django provides web-based management tools.

Django's automated management tools are part of django.contrib. You can see it in INSTALLED_APPS in the project's settings.py

Django Admin management tool example

INSTALLED_APPS = (
    'django.contrib.admin',    
    'django.contrib.auth',    
    'django.contrib.contenttypes',    
    'django.contrib.sessions',    
    'django.contrib.messages',    
    'django.contrib.staticfiles',
)