Skip to main content

Posts

Showing posts from 2018
Django is one of the powerful web frameworks of python that encourages rapid development and clean pragmatic design. Its initial release date was 21-July-2005 and latest stable release is 2.1. Authors of Django framework are Adrian Holovaty, Simon Willison and current developed and managed by Django software foundation. Core Django framework can be seen as  MVC architecture. It consists of this own ORM (object-relational mapping system), which mediates between data models which we define in Django and relational model, a system for processing HTTP requests with web templating engine known as “View” and regular expression based URL dispatcher know as “Controller”. Here are some things which Django core frameworks include:- It provides a serialization system which can parse XML and JSON representation of database model instances. It provides template rendering system. An internal dispatcher system that allows components of the system to communicate to each other with prefe...