Overview
Django is a light-weight web framework aimed at rapidly developing dynamic websites. It's reputation has grown as quick and clean way to build websites as evidenced by Django's tagline, "The Web framework for perfectionists with deadlines."
Django is DRY
A main principle of the Django philosophy is keeping your code DRY which stands for Don't Repeat Yourself. This helps keep Django projects easy to construct and maintain.
Django is opinionated
Also Django is considered to be an opinionated framework meaning that there is one good established way accomplish a task. Deviating from Django's strong conventions is frowned upon if there is not a good reason to do so. In the instance that you are working on a team or inheriting code from another, these conventions prove to be invaluable.
Django is pythonic
Django code is nothing more than python organized into a useful web building tool. Django programmers are encouraged to keep their code "pythonic" and not add needless layers of abstraction.