Django (web framework)
Screenshot The default Django page | |
Original author(s) | Lawrence Journal-World |
---|---|
Developer(s) | Django Software Foundation |
Initial release | 21 July 2005[1] |
Stable release | 1.9.2[2] (February 2, 2016 ) [±] |
Preview release | 1.9rc2[3] (November 24, 2015 ) [±] |
Development status | Active |
Written in | Python |
Size | 6.92 MB |
Type | Web framework |
License | 3-clause BSD |
Website |
www |
Django (/ˈdʒæŋɡoʊ/ JANG-goh)[4] is a free and open-source web 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
Despite having its own nomenclature, such as naming the callable objects generating the HTTP responses "views",[5] the core Django framework can be seen as MVC.[6] It consists of an object-relational mapper (ORM) that mediates between data models (defined as Python classes) and a relational database ("Model"); a system for processing HTTP requests with a web templating system ("View") and a regular-expression-based URL dispatcher ("Controller").
Also included in the core framework are:
- a lightweight and standalone web server for development and testing
- a form serialization and validation system that can translate between HTML forms and values suitable for storage in the database
- a template system that utilizes the concept of inheritance borrowed from object-oriented programming
- a caching framework that can use any of several cache methods
- support for middleware classes that can intervene at various stages of request processing and carry out custom functions
- an internal dispatcher system that allows components of an application to communicate events to each other via pre-defined signals
- an internationalization system, including translations of Django's own components into a variety of languages
- a serialization system that can produce and read XML and/or JSON representations of Django model instances
- a system for extending the capabilities of the template engine
- an interface to Python's built in unit test framework
Bundled applications
The main Django distribution also bundles a number of applications in its "contrib" package, including:
- an extensible authentication system
- the dynamic administrative interface
- tools for generating RSS and Atom syndication feeds
- a sites framework that allows one Django installation to run multiple websites, each with their own content and applications
- tools for generating Google Sitemaps
- built-in mitigation for cross-site request forgery, cross-site scripting, SQL injection, password cracking and other typical web attacks, most of them turned on by default[16][17]
- a framework for creating GIS applications
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 on Microsoft operating systems,[24] while similarly external backends exist for IBM DB2,[25] SQL Anywhere[26] and Firebird.[27] There is a fork named django-nonrel, which supports NoSQL databases, such as MongoDB and Google App Engine's Datastore.[28]
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.[29]
Google App Engine includes support for Django version 1.x.x[30] as one of the bundled frameworks.
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;[31] while another is held in the United States in September, usually in Portland, Oregon.[32] 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.[33]
Django mini-conferences were held in Hobart, Australia in July 2013 and Brisbane, Australia in August 2014.[34]
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.
- Swig for JavaScript
- Liquid for Ruby
- Template::Swig for Perl
- Twig for PHP
- Jinja for Python
- ErlyDTL for Erlang
Integrated development environments for Python
Although 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.[35]
- Anjuta
- Aptana Studio with integrated PyDev
- Codenvy
- Eclipse with PyDev
- Eric Python IDE
- IntelliJ IDEA with Django plugin, provides functionality similar to PyCharm
- Koding
- Komodo IDE
- Microsoft Visual Studio with Python Tools for Visual Studio
- MonoDevelop
- NetBeans with Django Plugin[36]
- Ninja IDE
- PyCharm
- PyScripter
- Spyder (software)
- SourceLair
- Wing IDE
Version history
Meaning | |
---|---|
Red | Not supported |
Yellow | Still supported |
Green | Current version |
Version | Date | Notes |
---|---|---|
0.90[37] | 16 Nov 2005 | |
0.91[38] | 11 Jan 2006 | "new-admin" |
0.95[39] | 29 Jul 2006 | "magic removal" |
0.96[40] | 23 Mar 2007 | "newforms", testing tools |
1.0[41] | 3 Sep 2008 | API stability, decoupled admin, unicode |
1.1[42] | 29 Jul 2009 | Aggregates, transaction based tests |
1.2[43] | 17 May 2010 | Multiple db connections, CSRF, model validation |
1.3[44] | 23 Mar 2011 | Class based views, staticfiles |
1.4[45] | 23 Mar 2012 | Timezones, in browser testing, app templates. [46] |
1.5[47] | 26 Feb 2013 | Python 3 Support, configurable user model |
1.6[48] | 6 Nov 2013 | Dedicated to Malcolm Tredinnick, db transaction management, connection pooling. |
1.7[49] | 2 Sep 2014 | Migrations, application loading and configuration. |
1.8[50] | 1 Apr 2015 | Native support for multiple template engines. Long-term support release, supported until at least April 2018 |
1.9[51] | 1 Dec 2015 | Automatic password validation. New styling for admin interface. |
See also
Wikimedia Commons has media related to Django (web framework). |
Bibliography
- Roy Greenfeld, Daniel; Roy Greenfeld, Audrey (2015), Two Scoops of Django: Best Practices for Django 1.8 (3rd ed.), Two Scoops Press, p. 531, ISBN 0981467342
- Jaiswal, Sanjeev; Kumar, Ratan (22 June 2015), Learning Django Web Development (1st ed.), Packt, p. 405, ISBN 1783984406
- Ravindrun, Arun (31 March 2015), Django Design Patterns and Best Practices (1st ed.), Packt, p. 180, ISBN 1783986646
- Osborn, Tracy (May 2015), Hello Web App (1st ed.), Tracy Osborn, p. 142, ISBN 0986365912
- Bendoraitis, Aidas (October 2014), Web Development with Django Cookbook (1st ed.), Packt, p. 294, ISBN 178328689X
- Baumgartner, Peter; Malet, Yann (2015), High Performance Django (1st ed.), Lincoln Loop, p. 184, ISBN 1508748128
- Elman, Julia; Lavin, Mark (2014), Lightweight Django (1st ed.), O'Reilly Media, p. 246, ISBN 149194594X
- Percival, Harry (2014), Test-Driven Development with Python (1st ed.), O'Reilly Media, p. 480, ISBN 1449364829
This list is an extraction from Current Django Books
References
- ↑ "Django FAQ". Retrieved 2 September 2014.
- ↑ Graham, Tim (2 February 2016). "Django releases issued: 1.9.2 (security) and 1.8.9 (bugfix)". Django Weblog. Retrieved 2 February 2016.
- ↑ Graham, Tim (24 November 2015). "Security releases issued: 1.9rc2, 1.8.7, 1.7.11". Django Weblog. Retrieved 27 November 2015.
- ↑ What does "Django" mean, and how do you pronounce it?
- 1 2 Django FAQ about MVC in Django
- 1 2 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
- ↑ Pinterest: What technologies were used to make Pinterest? - Quora
- ↑ "What Powers Instagram: Hundreds of Instances, Dozens of Technologies".
- ↑ Python | MDN
- ↑ Opensource.washingtontimes.com. Retrieved on 2014-05-30.
- ↑ "Scaling Django to 8 Billion Page Views".
- ↑ "20 Creative Websites Running Django".
- ↑ https://code.djangoproject.com/wiki/DjangoSuccessStoryBitbucket
- 1 2 "Django's History". The Django Book. Retrieved 6 June 2013.
- ↑ Announcing the Django Software Foundation
- ↑ "Security in Django". Django Project. Retrieved 25 March 2013.
- ↑ Socol, James (2012). "Best Basic Security Practices (Especially with Django)". Retrieved 25 March 2013.
- ↑ What is a reusable app?
- ↑ djangopackages.com, an open source package repository for the Django framework
- ↑ Django design philosophies
- ↑ Django documentation of deployment
- ↑ Cookbook: Setting up Django
- ↑ How to use Django with Apache and mod_wsgi. Official Django documentation.
- ↑ https://bitbucket.org/Manfre/django-mssql/src
- ↑ https://code.google.com/p/ibm-db/
- ↑ https://code.google.com/p/sqlany-django/
- ↑ https://github.com/maxirobaina/django-firebird
- ↑ http://django-nonrel.org/
- ↑ https://code.google.com/p/django-jython/
- ↑ Running Pure Django Projects on Google App Engine. Code.google.com (2010-11-01). Retrieved on 5 December 2011.
- ↑ DjangoCon EU series, Lanyrd.com
- ↑ DjangoCon US series, Lanyrd.com
- ↑ "DjangoCon". DjangoCon. Retrieved 29 July 2012.
- ↑ DjangoCon AU 2013. Djangocon.com.au. Retrieved on 2014-05-30.
- ↑ Django development IDEs discussion at Stackoverflow
- ↑ NetBeans Django Plugin
- ↑ "Introducing Django 0.90". Django weblog. Retrieved 2 February 2013.
- ↑ "Django 0.91 released". Django weblog. Retrieved 2 February 2013.
- ↑ "Introducing Django 0.95". Django weblog. Retrieved 2 February 2013.
- ↑ "Announcing Django 0.96!". Django weblog. Retrieved 2 February 2013.
- ↑ "Django 1.0 released!". Django weblog. Retrieved 2 February 2013.
- ↑ "Django 1.1 released". Django weblog. Retrieved 2 February 2013.
- ↑ "Django 1.2 released". Django weblog. Retrieved 2 February 2013.
- ↑ "Django 1.3 released". Django weblog. Retrieved 2 February 2013.
- ↑ "Django 1.4 released". Django weblog. Retrieved 2 February 2013.
- ↑ https://docs.djangoproject.com/en/1.7/internals/release-process/#long-term-support-lts-releases
- ↑ "Django 1.5 released" Django weblog. Retrieved 27 February 2013.
- ↑ "Django 1.6 released" Django weblog. Retrieved 6 November 2013.
- ↑ "Django 1.7 released" Django weblog. Retrieved 4 September 2014.
- ↑ "Django 1.8 released" Django weblog. Retrieved 2 April 2015.
- ↑ "Django 1.9 released" Django weblog. Retrieved 1 December 2015.
External links
- Official website
- Django Official Documentation - Current and detailed documentation on nearly every aspect of Django. It includes a version selector for information pertaining to specific versions of Django.
- Two Scoops Press Curated List of Django Tutorials - A comprehensive list of up-to-date Django tutorials.
- Tango with Django - A beginner's tutorial to web development with Django.
- Taskbuster - A tutorial for experienced coders who want to learn Django.
- Django Packages - A directory of reusable apps, sites, tools, and more for Django projects.
- Django Girls official tutorial . Tutorial was built in mind for people starting learning programming.