Django (web framework)

Django
Original author(s) Lawrence Journal-World
Developer(s) Django Software Foundation
Initial release 21 July 2005[1]
Stable release 1.8[2] (April 1, 2015) [±]
Preview release 1.8c1[3] (March 18, 2015) [±]
Development status Active
Written in Python
Size 6.92 MB
Type Web application framework
License 3-clause BSD
Website djangoproject.com

Django (/ˈæŋɡ/ JANG-goh)[4] is a free and open source web application framework, written in Python, which follows the model–view–controller (MVC) architectural pattern.[5][6] It is maintained by the Django Software Foundation (DSF), an independent organization established as a 501(c)(3) non-profit.

Django's primary goal is to ease the creation of complex, database-driven websites. Django emphasizes reusability and "pluggability" of components, rapid development, and the principle of don't repeat yourself. Python is used throughout, even for settings, files, and data models. Django also provides an optional administrative create, read, update and delete interface that is generated dynamically through introspection and configured via admin models.

Some well-known sites that use Django include Pinterest,[7] Instagram,[8] Mozilla,[9] The Washington Times,[10] Disqus,[11] the Public Broadcasting Service,[12] and Bitbucket.[13]

History

Django was born in the fall of 2003, when the web programmers at the Lawrence Journal-World newspaper, Adrian Holovaty and Simon Willison, began using Python to build applications.[14] It was released publicly under a BSD license in July 2005. The framework was named after guitarist Django Reinhardt.[14]

In June 2008, it was announced that a newly formed Django Software Foundation (DSF) would maintain Django in the future.[15]

Features

Components

Screenshot of the Django admin interface for modifying a user.

Despite having its own nomenclature, such as naming the callable objects generating the response "views",[5] the core Django framework can be seen as MVC.[6] It consists of an object-relational mapper which mediates between data models (defined as Python classes) and a relational database ("Model"); a system for processing requests with a web templating system ("View") and a regular-expression-based URL dispatcher ("Controller").

Also included in the core framework are:

Bundled applications

The main Django distribution also bundles a number of applications in its "contrib" package, including:

Extensibility

Django's configuration system allows third party code to be plugged into a regular project, provided that it follows the reusable app[18] conventions. More than 2500 packages[19] are available to extend the framework's original behavior, providing solutions to issues the original tool didn't: registration, search, API provision and consumption, CMS, etc.

This extensibility is, however, mitigated by internal components dependencies. While the Django philosophy implies loose coupling,[20] the template filters and tags assume one engine implementation, and both the auth and admin bundled applications require the use of the internal ORM. None of these filters or bundled apps are mandatory to run a Django project, but reusable apps tend to depend on them, encouraging developers to keep using the official stack in order to benefit fully from the apps ecosystem.

Server arrangements

Django can be run in conjunction with Apache, NGINX using WSGI, Gunicorn, or Cherokee using flup (a Python module).[21][22] Django also includes the ability to launch a FastCGI server, enabling use behind any web server which supports FastCGI, such as Lighttpd or Hiawatha. It is also possible to use other WSGI-compliant web servers.[23] Django officially supports four database backends: PostgreSQL, MySQL, SQLite, and Oracle. Microsoft SQL Server can be used with django-mssql but only in Microsoft operating systems, while similarly external backends exist for IBM DB2, SQL Anywhere and Firebird. There is a fork named django-nonrel which supports NoSQL databases, such as MongoDB and Google App Engine's Datastore.

Django may also be run in conjunction with Jython on any Java EE application server such as GlassFish or JBoss. In this case django-jython must be installed in order to provide JDBC drivers for database connectivity, which also provides functionality to compile Django in to a .war suitable for deployment.

Google App Engine includes support for Django version 1.x.x[24] as one of the bundled frameworks.

Using Django

Online resources

Books

Integrated development environments for Python

While a number of Django developers use text editors such as Vim, Emacs, TextMate or Sublime with Django Bundle for their projects, others prefer python-specific tools providing debugging, refactoring, unit testing, etc.[25]

Versions

Meaning
Red Not supported
Yellow Still supported
Green Current version
Version history
Version Date Notes
0.90[27] 16 Nov 2005
0.91[28] 11 Jan 2006 "new-admin"
0.95[29] 29 Jul 2006 "magic removal"
0.96[30] 23 Mar 2007 "newforms", testing tools
1.0[31] 3 Sep 2008 API stability, decoupled admin, unicode
1.1[32] 29 Jul 2009 Aggregates, transaction based tests
1.2[33] 17 May 2010 Multiple db connections, CSRF, model validation
1.3[34] 23 Mar 2011 Class based views, staticfiles
1.4[35] 23 Mar 2012 Timezones, in browser testing, app templates. Long-term support release, supported until 1 October 2015[36]
1.5[37] 26 Feb 2013 Python 3 Support, configurable user model
1.6[38] 6 Nov 2013 Dedicated to Malcolm Tredinnick, db transaction management, connection pooling.
1.7[39] 2 Sep 2014 Migrations, application loading and configuration. Will receive security updates until at least October 2015
1.8[40] 1 Apr 2015 Native support for multiple template engines. Long-term support release, supported until at least April 2018

Community

DjangoCon

There is a semiannual conference for Django developers and users, named "DjangoCon", that has been held since September 2008. DjangoCon is held annually in Europe, in May or June;[41] while another is held in the United States in September, usually in Portland, Oregon.[42] The 2012 DjangoCon took place in Washington D.C from 3 to 8 September. 2013 DjangoCon was held in Chicago at the Hyatt Regency Hotel and the post-conference Sprints were hosted at Digital Bootcamp, computer training center.[43]

Django mini-conferences were held in Hobart, Australia in July 2013 and Brisbane, Australia in August 2014.[44]

Other languages

Django's template design has been ported to other languages besides Python, providing decent cross-platform support. Some of these options are more direct ports, while others are inspired by Django, retaining its concepts but taking greater liberties to deviate from Django's design.

See also

Wikimedia Commons has media related to Django (web framework).

References

  1. "Django FAQ". Retrieved 2 September 2014.
  2. Graham, Tim (1 April 2015). "Django 1.8 released". Django Weblog. Retrieved 2 April 2015.
  3. Graham, Tim (18 March 2015). "Security releases issued". Django Weblog. Retrieved 20 March 2015.
  4. What does "Django" mean, and how do you pronounce it?
  5. 5.0 5.1 Django FAQ about MVC in Django
  6. 6.0 6.1 Adrian Holovaty, Jacob Kaplan-Moss et al. The Django Book. Django follows this MVC pattern closely enough that it can be called an MVC framework
  7. Pinterest: What technologies were used to make Pinterest? - Quora
  8. "What Powers Instagram: Hundreds of Instances, Dozens of Technologies".
  9. Python | MDN
  10. Opensource.washingtontimes.com. Retrieved on 2014-05-30.
  11. "Scaling Django to 8 Billion Page Views".
  12. "20 Creative Websites Running Django".
  13. https://code.djangoproject.com/wiki/DjangoSuccessStoryBitbucket
  14. 14.0 14.1 "Django's History". The Django Book. Retrieved 6 June 2013.
  15. Announcing the Django Software Foundation
  16. "Security in Django". Django Project. Retrieved March 25, 2013.
  17. Socol, James (2012). "Best Basic Security Practices (Especially with Django)". Retrieved March 25, 2013.
  18. What is a reusable app?
  19. djangopackages.com, an open source package repository for the Django framework
  20. Django design philosophies
  21. Django documentation of deployment
  22. Cookbook: Setting up Django
  23. How to use Django with Apache and mod_wsgi. Official Django documentation.
  24. Running Pure Django Projects on Google App Engine. Code.google.com (2010-11-01). Retrieved on 5 December 2011.
  25. Django development IDEs discussion at Stackoverflow
  26. NetBeans Django Plugin
  27. "Introducing Django 0.90". Django weblog. Retrieved 2 February 2013.
  28. "Django 0.91 released". Django weblog. Retrieved 2 February 2013.
  29. "Introducing Django 0.95". Django weblog. Retrieved 2 February 2013.
  30. "Announcing Django 0.96!". Django weblog. Retrieved 2 February 2013.
  31. "Django 1.0 released!". Django weblog. Retrieved 2 February 2013.
  32. "Django 1.1 released". Django weblog. Retrieved 2 February 2013.
  33. "Django 1.2 released". Django weblog. Retrieved 2 February 2013.
  34. "Django 1.3 released". Django weblog. Retrieved 2 February 2013.
  35. "Django 1.4 released". Django weblog. Retrieved 2 February 2013.
  36. https://docs.djangoproject.com/en/1.7/internals/release-process/#long-term-support-lts-releases
  37. "Django 1.5 released" Django weblog. Retrieved 27 February 2013.
  38. "Django 1.6 released" Django weblog. Retrieved 6 November 2013.
  39. "Django 1.7 released" Django weblog. Retrieved 4 September 2014.
  40. "Django 1.8 released" Django weblog. Retrieved 2 April 2015.
  41. DjangoCon EU series, Lanyrd.com
  42. DjangoCon US series, Lanyrd.com
  43. "DjangoCon". DjangoCon. Retrieved 29 July 2012.
  44. DjangoCon AU 2013. Djangocon.com.au. Retrieved on 2014-05-30.