Django (web framework)
Template:Short description Script error: No such module "other uses". Template:Use dmy dates Script error: No such module "Unsubst". Script error: No such module "Infobox".Template:Template otherScript error: No such module "Check for unknown parameters".Template:Main other Django (Template:IPAc-en Template:Respell; sometimes stylized as django)[1] is a free and open-source, Python-based web framework that runs on a web server. It follows the model–template–views (MTV) architectural pattern.[2][3] It is maintained by the Django Software Foundation (DSF), an independent organization established in the US as a 501(c)(3) non-profit.
Django's primary goal is to ease the creation of complex, database-driven websites. The framework emphasizes reusability and "pluggability" of components, less code, low coupling, rapid development, and the principle of don't repeat yourself.[4] 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 Instagram,[5] Mozilla,[6] Disqus,[7] Bitbucket,[8] Nextdoor,[9] and Clubhouse.[10]
History
Django was created in the autumn of 2003, when the web programmers at the Lawrence Journal-World newspaper, Adrian Holovaty and Simon Willison, began using Python to build applications. Jacob Kaplan-Moss was hired early in Django's development shortly before Willison's internship ended.[11] It was released publicly under a BSD license in July 2005. The framework was named after guitarist Django Reinhardt.[12] Holovaty is a romani jazz guitar player inspired in part by Reinhardt's music.[13]
In June 2008, it was announced that a newly formed Django Software Foundation (DSF) would maintain Django in the future.[14]
Features
Components
Despite having its own nomenclature, such as naming the callable objects generating the HTTP responses "views",[2] the core Django framework can be seen as an MVC architecture.[3] 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 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[15][16]
- a framework for creating geographic information system (GIS) applications
Extensibility
Script error: No such module "Unsubst".
Django's configuration system allows third party code to be plugged into a regular project, provided that it follows the reusable app[17] conventions. More than 5000 packages[18] are available to extend the framework's original behavior, providing solutions to issues the original tool didn't tackle: registration, search, API provision and consumption, CMS, etc.
This extensibility is, however, mitigated by internal components' dependencies. While the Django philosophy implies loose coupling,[19] 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 on ASGI or WSGI-compliant web servers.[20] Django officially supports five database backends: PostgreSQL, MySQL, MariaDB, SQLite, and Oracle.[21] Microsoft SQL Server can be used with mssql-django.
Version history
The Django team will occasionally designate certain releases to be "long-term support" (LTS) releases.[22] LTS releases will get security and data loss fixes applied for a guaranteed period of time, typically 3+ years, regardless of the pace of releases afterwards.
| Version | Release date[23] | End of mainstream support | End of extended support | Notes[24] |
|---|---|---|---|---|
| scope="row" Template:Version[25] | Template:Dts | |||
| scope="row" Template:Version[26] | Template:Dts | "new-admin" | ||
| scope="row" Template:Version[27] | Template:Dts | "magic removal" | ||
| scope="row" Template:Version[28] | Template:Dts | "newforms", testing tools | ||
| scope="row" Template:Version[29] | Template:Dts | API stability, decoupled admin, unicode | ||
| scope="row" Template:Version[30] | Template:Dts | Aggregates, transaction based tests | ||
| scope="row" Template:Version[31] | Template:Dts | Multiple db connections, CSRF, model validation | ||
| scope="row" Template:Version[32] | Template:Dts | Template:Dts | Template:Dts | Class based views, staticfiles |
| scope="row" Template:Version[33] | Template:Dts | Template:Dts | Template:Dts | Time zones, in browser testing, app templates. |
| scope="row" Template:Version[34] | Template:Dts | Template:Dts | Template:Dts | Python 3 Support, configurable user model |
| scope="row" Template:Version[35] | Template:Dts | Template:Dts | Template:Dts | Dedicated to Malcolm Tredinnick, db transaction management, connection pooling. |
| scope="row" Template:Version[36] | Template:Dts | Template:Dts | Template:Dts | Migrations, application loading and configuration. |
| scope="row" Template:Version[37] | Template:Dts | Template:Dts | Template:Dts | Native support for multiple template engines. Support ended on 1 April 2018 |
| scope="row" Template:Version[38] | Template:Dts | Template:Dts | Template:Dts | Automatic password validation. New styling for admin interface. |
| scope="row" Template:Version[39] | Template:Dts | Template:Dts | Template:Dts | Full text search for PostgreSQL. New-style middleware. |
| scope="row" Template:Version[40] | Template:Dts | Template:Dts | Template:Dts | Last version to support Python 2.7. Support ended on 1 April 2020 |
| scope="row" Template:Version[41] | Template:Dts | Template:Dts | Template:Dts | First Python 3-only release, Simplified URL routing syntax, Mobile friendly admin. |
| scope="row" Template:Version[42] | Template:Dts | Template:Dts | Template:Dts | Model "view" permission. |
| scope="row" Template:Version[43] | Template:Dts | Template:Dts | Template:Dts | Security release. |
| scope="row" Template:Version[44] | Template:Dts | Template:Dts | Template:Dts | ASGI support |
| scope="row" Template:Version[45] | Template:Dts | Template:Dts | Template:Dts | Asynchronous views and middleware |
| scope="row" Template:Version[46] | Template:Dts | Template:Dts | April 2024 | Tracking many to many relationships, added support for Python 3.11 |
| scope="row" Template:Version[47] | Template:Dts | Template:Dts | April 2023 | Support for pytz is now deprecated and will be removed in Django 5.0.
|
| scope="row" Template:Version[48] | Template:Dts | April 2023 | December 2023 | Asynchronous ORM interface, CSRF_COOKIE_MASKED setting, outputting a form, like {{ form }}
|
| scope="row" Template:Version[49] | Template:Dts | December 2023 | April 2026 | Psycopg 3 support, ENGINE as django.db.backends.postgresql supports both libraries.
|
| scope="row" Template:Version[50] | Template:Dts | August 2024 | April 2025 | Facet filters in the admin, Simplified templates for form field rendering |
| scope="row" Template:Version[51] | Template:Dts | April 2025 | December 2025 | Added support for Python 3.13. Added support for PostgreSQL connection pools. |
| scope="row" Template:Version[52] | Template:Dts | December 2025 | April 2028 | Automatic model import in shell, support for composite primary keys |
| scope="row" Template:Version[53] | Template:Dts | August 2026 | April 2027 | |
| Template:Version | ||||
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;[54] while another is held in the United States in August or September, in various cities.[55] The 2012 DjangoCon took place in Washington, D.C., from September 3 to 8. 2013 DjangoCon was held in Chicago at the Hyatt Regency Hotel and the post-conference Sprints were hosted at Digital Bootcamp, computer training center.[56] The 2014 DjangoCon US returned to Portland, OR from August 30 to 6 September. The 2015 DjangoCon US was held in Austin, TX from September 6 to 11 at the AT&T Executive Center. The 2016 DjangoCon US was held in Philadelphia, PA at The Wharton School of the University of Pennsylvania from July 17 to 22.[57] The 2017 DjangoCon US was held in Spokane, WA;[58] in 2018 DjangoCon US was held in San Diego, CA.[59] DjangoCon US 2019 was held again in San Diego, CA from September 22 to 27. DjangoCon 2021 took place virtually and in 2022, DjangoCon US returned to San Diego from October 16 to 21. DjangoCon US 2023 was held from October 16 to 20 at the Durham, NC convention center and DjangoCon US 2024 is scheduled to return to Durham for September 22 to 27.[60][61]
Django mini-conferences are usually held every year as part of the Australian Python Conference 'PyCon AU'.[62] Previously, these mini-conferences have been held in:
- Hobart, Australia, in July 2013,
- Brisbane, Australia, in August 2014 and 2015,
- Melbourne, Australia in August 2016 and 2017, and
- Sydney, Australia, in August 2018 and 2019.
Django has spawned user groups and meetups around the world, a notable group is the Django Girls organization, which began in Poland but now has had events in 91 countries.[63][64][65]
Ports to other languages
Programmers have ported Django's template engine design from Python to other languages, providing decent cross-platform support. Some of these options are more direct ports; others, though inspired by Django and retaining its concepts, take the liberty to deviate from Django's design:
- Liquid for Ruby[66]
- Template::Swig for Perl[67]
- Twig for PHP and JavaScript[68][69]
- Jinja for Python[70]
- ErlyDTL for Erlang[71]
CMSs based on Django Framework
Django as a framework is capable of building a complete CMS. Some dedicated CMS projects are based upon Django:
- Django CMS[72]
- Wagtail
- Mezzanine
See also
Script error: No such module "Portal".
- FastAPI
- Flask
- Jam.py
- Pylons project
- Web2py
- Tornado
- Ruby on Rails
- Comparison of web frameworks
- Django REST framework
References
Bibliography
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
- Script error: No such module "citation/CS1".
External links
Template:Python web frameworks Template:Web frameworks
- ↑ Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ a b Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ How to deploy Django. Official Django documentation.
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ "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.
- ↑ "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.
- ↑ "Django 1.10 released" Django weblog. Retrieved 1 August 2016.
- ↑ "Django 1.11 released" Django weblog. Retrieved 4 April 2017.
- ↑ "Django 2.0 released" Django weblog. Retrieved 3 December 2017.
- ↑ "Django 2.1 released" Django weblog. Retrieved 2 August 2018.
- ↑ Django 2.2 release notes. Retrieved 1 July 2019.
- ↑ Django 3.0 release notes. Retrieved 2 December 2019.
- ↑ Django 3.1 release notes. Retrieved 5 August 2020.
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ DjangoCon EU series Template:Webarchive, Lanyrd.com
- ↑ DjangoCon US series Template:Webarchive, Lanyrd.com
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ DjangoCon AU. Djangocon.com.au. Retrieved on 2019-12-16.
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".
- ↑ Script error: No such module "citation/CS1".