Django Tutorial
There are many different web frameworks under Python. Django is the most representative among the heavyweight contenders. Many successful websites and apps are built on Django.
Django is an open-source web application framework written in Python.
Django adheres to the BSD license and was first released in July 2005, with the first official version 1.0 released in September 2008.
Django adopts the MVT software design pattern, which stands for Model, View, and Template.
Who is this tutorial for?
This tutorial is suitable for developers with a basic understanding of Python.
What you need to know before learning this tutorial
Before learning this tutorial, you should have some basic web knowledge and familiarity with the Python 2.x Basic Tutorial or Python 3.x Basic Tutorial.
Django versions correspond to Python versions:
Django Version | Python Version |
---|---|
1.8 | 2.7, 3.2, 3.3, 3.4, 3.5 |
1.9, 1.10 | 2.7, 3.4, 3.5 |
1.11 | 2.7, 3.4, 3.5, 3.6 |
2.0 | 3.4, 3.5, 3.6, 3.7 |
2.1, 2.2 | 3.5, 3.6, 3.7 |