Django Introduction

Django is a framework of python having capability to make websites by using python. Django is used to develop secure, scalable and more efficient web applications. Django have many in built quality like default database(SQLlite3) Django Admin etc.

Django follows MVT Models i.e. Model, View and Template.

Model: The model works as a back-end. The model deals with back-end operations.

View: Hanled user interaction and business logic processing.

Template: Defines the presentation layer and generates HTML to be served to the client.

URLs(urls.py): With the help of URLs django helps to access around to different pages.

You may also like...