Skip to content

Latest commit

 

History

History
30 lines (14 loc) · 1.36 KB

django.md

File metadata and controls

30 lines (14 loc) · 1.36 KB

OVERVIEW

Django,free and opensource web framework,which allows us to create secure and well maintained websites.Primary goal of django is to make the development of complex database driven websites easy. In order to write web applications in python directly basic requirements include:

1.Web server gateway interface.

2.Routing

3.SQL Interface

4.Template

On the other hand Django includes all of the above mention features hence it becomes easy for one to write web application.One can focus on the designing part and writing of the web application without taking care of the above features.Various sites that use django includes Pinterest Public Broadcasting Service, Instagram, Mozilla, The Washington Times, Disqus, Bitbucket and Nextdoor.

Django is fast,fully loaded,secure,scalable(can handle large increase in users,traffic on various sites) and versatile.Despite of the above stated advantages django is bad for large applications and it comes with tons of perbuilt features which may or maynot be used.

RESOURCES TO LEARN DJANGO:

Django Girls Tutorial

How To Tango With Django 1.7

Mastering Django for Django 1.8

DJANGO INSTALLATION GUIDE