Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Django (web framework)

From Wikipedia, the free encyclopedia
(Redirected fromDjango (Web framework))
Python web framework
For other uses, seeDjango.

This articlerelies excessively onreferences toprimary sources. Please improve this article by addingsecondary or tertiary sources.
Find sources: "Django" web framework – news ·newspapers ·books ·scholar ·JSTOR
(February 2025) (Learn how and when to remove this message)
The default Django page
Original author(s)Adrian Holovaty,Simon Willison
Developer(s)Django Software Foundation[1]
Initial release21 July 2005; 19 years ago (2005-07-21)[2]
Stable release
5:5.2.3[3] Edit this on Wikidata / 10 June 2025; 27 days ago (10 June 2025)
Repository
Written inPython[1]
TypeWeb framework[1]
License3-clause BSD[4]
Websitewww.djangoproject.com Edit this on Wikidata

Django (/ˈæŋɡ/JANG-goh; sometimes stylized asdjango)[5] is afree and open-source,Python-basedweb framework that runs on aweb server. It follows the model–template–views (MTV)architectural pattern.[6][7] It is maintained by theDjango Software Foundation (DSF), an independent organization established in the US as a501(c)(3) non-profit.

Django's primary goal is to ease the creation of complex,database-driven websites. The framework emphasizesreusability and "pluggability" of components, less code,low coupling, rapid development, and the principle ofdon't repeat yourself.[8] Python is used throughout, even for settings, files, anddata models. Django also provides an optional administrativecreate, read, update and delete interface that is generated dynamically throughintrospection and configured via admin models.

Some well-known sites that use Django includeInstagram,[9]Mozilla,[10]Disqus,[11]Bitbucket,[12]Nextdoor,[13] andClubhouse.[14]

History

[edit]

Django was created in the autumn of 2003, when theweb programmers at theLawrence Journal-World newspaper,Adrian Holovaty andSimon Willison, began using Python to build applications. Jacob Kaplan-Moss was hired early in Django's development shortly before Willison'sinternship ended.[15] It was released publicly under aBSD license in July 2005. The framework was named after guitaristDjango Reinhardt.[16] Holovaty is aromani jazz guitar player inspired in part by Reinhardt's music.[17]

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

Features

[edit]

Components

[edit]
Screenshot of the Django admin interface for modifying a user account

Despite having its own nomenclature, such as naming thecallable objects generating theHTTP responses "views",[6] the core Django framework can be seen as anMVC architecture.[7] It consists of anobject-relational mapper (ORM) that mediates betweendata models (defined as Python classes) and arelational database ("Model"), a system for processing HTTP requests with aweb templating system ("View"), and aregular-expression-basedURL dispatcher ("Controller").

Also included in the core framework are:

  • a lightweight and standaloneweb server for development and testing
  • a formserialization and validation system that can translate betweenHTML forms and values suitable for storage in the database
  • a template system that utilizes the concept ofinheritance borrowed from object-oriented programming
  • acaching framework that can use any of several cache methods
  • support formiddleware 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
  • aninternationalization system, including translations of Django's own components into a variety of languages
  • aserialization system that can produce and readXML and/orJSON representations of Django model instances
  • a system for extending the capabilities of the template engine
  • an interface to Python's built-inunit test framework

Bundled applications

[edit]

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

Extensibility

[edit]
This sectionrelies excessively onreferences toprimary sources. Please improve this section by addingsecondary or tertiary sources.
Find sources: "Django" web framework – news ·newspapers ·books ·scholar ·JSTOR
(January 2015) (Learn how and when to remove this message)

Django's configuration system allows third party code to be plugged into a regular project, provided that it follows the reusable app[21] conventions. More than 5000 packages[22] 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,[23] the template filters and tags assume one engine implementation, and both the auth and admin bundled applications require the use of the internalORM. 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

[edit]

Django can be run onASGI orWSGI-compliant web servers.[24] Django officially supports five database backends:PostgreSQL,MySQL,MariaDB,SQLite, andOracle.[25]Microsoft SQL Server can be used with mssql-django.

Version history

[edit]

The Django team will occasionally designate certain releases to be "long-term support" (LTS) releases.[26] 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.


VersionRelease date[27]End of mainstream supportEnd of extended supportNotes[28]
Unsupported: 0.90[29]16 Nov 2005
Unsupported: 0.91[30]11 Jan 2006"new-admin"
Unsupported: 0.95[31]29 Jul 2006"magic removal"
Unsupported: 0.96[32]23 Mar 2007"newforms", testing tools
Unsupported: 1.0[33]3 Sep 2008API stability, decoupled admin, unicode
Unsupported: 1.1[34]29 Jul 2009Aggregates, transaction based tests
Unsupported: 1.2[35]17 May 2010Multiple db connections,CSRF, model validation
Unsupported: 1.3[36]23 Mar 201123 Mar 201226 Feb 2013Class based views, staticfiles
Unsupported: 1.4 LTS[37]23 Mar 201226 Feb 20131 Oct 2015Time zones, in browser testing, app templates.
Unsupported: 1.5[38]26 Feb 20136 Nov 20132 Sep 2014Python 3 Support, configurable user model
Unsupported: 1.6[39]6 Nov 20132 Sep 20141 Apr 2015Dedicated to Malcolm Tredinnick, db transaction management, connection pooling.
Unsupported: 1.7[40]2 Sep 20141 Apr 20151 Dec 2015Migrations, application loading and configuration.
Unsupported: 1.8 LTS[41]1 Apr 20151 Dec 20151 Apr 2018Native support for multiple template engines.Support ended on 1 April 2018
Unsupported: 1.9[42]1 Dec 20151 Aug 20164 Apr 2017Automatic password validation. New styling for admin interface.
Unsupported: 1.10[43]1 Aug 20164 Apr 20172 Dec 2017Full text search for PostgreSQL. New-style middleware.
Unsupported: 1.11 LTS[44]4 Apr 20172 Dec 20171 Apr 2020Last version to support Python 2.7.Support ended on 1 April 2020
Unsupported: 2.0[45]2 Dec 20171 Aug 20181 Apr 2019First Python 3-only release, Simplified URL routing syntax, Mobile friendly admin.
Unsupported: 2.1[46]1 Aug 20181 Apr 20192 Dec 2019Model "view" permission.
Unsupported: 2.2 LTS[47]1 Apr 20192 Dec 201911 Apr 2022Security release.
Unsupported: 3.0[48]2 Dec 20193 Aug 20206 Apr 2020ASGI support
Unsupported: 3.1[49]4 Aug 20206 Apr 20207 Dec 2021Asynchronous views and middleware
Unsupported: 3.2 LTS[50]6 Apr 20217 Dec 2021April 2024Tracking many to many relationships, added support for Python 3.11
Unsupported: 4.0[51]7 Dec 20213 Aug 2022April 2023Support forpytz is now deprecated and will be removed in Django 5.0.
Unsupported: 4.1[52]3 Aug 2022April 2023December 2023Asynchronous ORM interface,CSRF_COOKIE_MASKED setting, outputting a form, like{{ form }}
Supported: 4.2 LTS[53]3 Apr 2023December 2023April 2026Psycopg 3 support,ENGINE asdjango.db.backends.postgresql supports both libraries.
Supported: 5.0[54]4 Dec 2023August 2024April 2025Facet filters in the admin, Simplified templates for form field rendering
Supported: 5.1[55]7 Aug 2024April 2025December 2025Added support for Python 3.13. Added support for PostgreSQL connection pools.
Latest version:5.2 LTS[56]2 Apr 2025December 2025April 2028Automatic model import in shell, support for composite primary keys
Future version: 6.0[57]Dec 2025August 2026April 2027
Legend:
Unsupported
Supported
Latest version
Preview version
Future version

DjangoCon

[edit]

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;[58] while another is held in the United States in August or September, in various cities.[59] 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-conferenceSprints were hosted at Digital Bootcamp, computer training center.[60] The 2014 DjangoCon US returned toPortland, OR from August 30 to 6 September. The 2015 DjangoCon US was held inAustin, TX from September 6 to 11 at the AT&T Executive Center. The 2016 DjangoCon US was held in Philadelphia, PA at TheWharton School of the University of Pennsylvania from July 17 to 22.[61] The 2017 DjangoCon US was held in Spokane, WA;[62] in 2018 DjangoCon US was held in San Diego, CA.[63] 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 theDurham, NC convention center and DjangoCon US 2024 is scheduled to return to Durham for September 22 to 27.[64][65]

Django mini-conferences are usually held every year as part of the AustralianPython Conference 'PyCon AU'.[66] 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 theDjango Girls organization, which began in Poland but now has had events in 91 countries.[67][68][69]

Ports to other languages

[edit]

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:

CMSs based on Django Framework

[edit]

Django as a framework is capable of building a completeCMS. Some dedicated CMS projects are based upon Django:

See also

[edit]

References

[edit]
  1. ^abc"django/README".GitHub. Retrieved8 September 2020.
  2. ^"Django FAQ". Retrieved27 March 2019.
  3. ^"Release 5.2.3". 10 June 2025. Retrieved16 June 2025.
  4. ^"django/LICENSE".GitHub. Retrieved8 September 2020.
  5. ^"FAQ: General - Django documentation - Django". Retrieved30 April 2016.
  6. ^ab"FAQ: General - Django documentation - Django". Retrieved30 April 2016.
  7. ^abAdrian Holovaty, Jacob Kaplan-Moss; et al.The Django Book. Archived fromthe original on 2 September 2016. Retrieved3 September 2013.Django follows this MVC pattern closely enough that it can be called an MVC framework
  8. ^"Design Philosophies".Django. Retrieved18 March 2018.
  9. ^"What Powers Instagram: Hundreds of Instances, Dozens of Technologies".Instagram Engineering.
  10. ^"Python".Mozilla Developer Network. Archived fromthe original on 8 February 2012. Retrieved30 April 2016.
  11. ^Robenolt, Matt."Scaling Django to 8 Billion Page Views".blog.disqus.com.
  12. ^"DjangoSuccessStoryBitbucket – Django". Archived fromthe original on 20 April 2016. Retrieved30 April 2016.
  13. ^"The anti-Facebook: one in four American neighborhoods are now using this private social network".The Verge. 18 August 2014. Retrieved16 June 2016.
  14. ^Demi, Luke (15 August 2021)."Reining in the thundering herd ⛈ Getting to 80% CPU utilization with Django".Clubhouse Blog. Retrieved16 August 2021.
  15. ^Willison, Simon."What is the history of the Django web framework? Why has it been described as "developed in a newsroom"?".Quora. Retrieved18 October 2019.
  16. ^"Introducing Django". The Django Book. Archived fromthe original on 29 July 2018. Retrieved29 July 2018.
  17. ^"Review: Adrian Holovaty's Playful and Precise 'Melodic Guitar Music'".Acoustic Guitar. 12 December 2023. Archived fromthe original on 30 December 2023.
  18. ^"Announcing the Django Software Foundation - Weblog - Django". 17 June 2008. Retrieved30 April 2016.
  19. ^"Security in Django". Django Project. Retrieved25 March 2013.
  20. ^Socol, James (2012)."Best Basic Security Practices (Especially with Django)". Retrieved25 March 2013.
  21. ^"What is a reusable app? — django-reusable-app-docs 0.1.0 documentation". Retrieved30 April 2016.
  22. ^"Django Packages API packages list". Retrieved17 April 2023.
  23. ^"Design philosophies - Django documentation - Django". Archived fromthe original on 4 March 2016. Retrieved30 April 2016.
  24. ^How to deploy Django. Official Django documentation.
  25. ^"Django documentation".Django documentation. Retrieved23 February 2025.
  26. ^"Django's release process - Django documentation - Django". Retrieved23 February 2025.
  27. ^"Download Django - Django".www.djangoproject.com.
  28. ^"FAQ: Installation - Django documentation - Django".docs.djangoproject.com.
  29. ^"Introducing Django 0.90". Django weblog. Retrieved 2 February 2013.
  30. ^"Django 0.91 released". Django weblog. Retrieved 2 February 2013.
  31. ^"Introducing Django 0.95". Django weblog. Retrieved 2 February 2013.
  32. ^"Announcing Django 0.96!". Django weblog. Retrieved 2 February 2013.
  33. ^"Django 1.0 released!". Django weblog. Retrieved 2 February 2013.
  34. ^"Django 1.1 released". Django weblog. Retrieved 2 February 2013.
  35. ^"Django 1.2 released". Django weblog. Retrieved 2 February 2013.
  36. ^"Django 1.3 released". Django weblog. Retrieved 2 February 2013.
  37. ^"Django 1.4 released". Django weblog. Retrieved 2 February 2013.
  38. ^"Django 1.5 released" Django weblog. Retrieved 27 February 2013.
  39. ^"Django 1.6 released" Django weblog. Retrieved 6 November 2013.
  40. ^"Django 1.7 released" Django weblog. Retrieved 4 September 2014.
  41. ^"Django 1.8 released" Django weblog. Retrieved 2 April 2015.
  42. ^"Django 1.9 released" Django weblog. Retrieved 1 December 2015.
  43. ^"Django 1.10 released" Django weblog. Retrieved 1 August 2016.
  44. ^"Django 1.11 released" Django weblog. Retrieved 4 April 2017.
  45. ^"Django 2.0 released" Django weblog. Retrieved 3 December 2017.
  46. ^"Django 2.1 released" Django weblog. Retrieved 2 August 2018.
  47. ^Django 2.2 release notes. Retrieved 1 July 2019.
  48. ^Django 3.0 release notes. Retrieved 2 December 2019.
  49. ^Django 3.1 release notes. Retrieved 5 August 2020.
  50. ^"Django 3.2 release notes". 6 April 2021. Retrieved7 June 2021.
  51. ^"Django 4.0 release notes". 7 December 2021. Retrieved4 August 2022.
  52. ^"Django 4.1 release notes". 3 August 2022. Retrieved4 August 2022.
  53. ^"Django 4.2 release notes". Retrieved4 August 2022.
  54. ^"Django 5.0 release notes". 4 December 2023. Retrieved4 December 2023.
  55. ^"Django 5.1 release notes". 7 August 2024. Retrieved8 August 2024.
  56. ^"Django 5.2 release notes". 2 April 2025. Retrieved23 February 2025.
  57. ^"Django 6.0 Roadmap". December 2025. Retrieved23 February 2025.
  58. ^DjangoCon EU seriesArchived 4 March 2016 at theWayback Machine, Lanyrd.com
  59. ^DjangoCon US seriesArchived 2 April 2016 at theWayback Machine, Lanyrd.com
  60. ^"DjangoCon". DjangoCon. Archived fromthe original on 5 August 2012. Retrieved29 July 2012.
  61. ^"DjangoCon". DjangoCon. Retrieved1 December 2016.
  62. ^"DjangoCon". DjangoCon.
  63. ^"DjangoCon". DjangoCon.
  64. ^"About DjangoCon US 2023".DjangoCon US. Retrieved17 July 2024.
  65. ^"About DjangoCon US".DjangoCon US. Retrieved17 July 2024.
  66. ^DjangoCon AU. Djangocon.com.au. Retrieved on 2019-12-16.
  67. ^"Lawrence-born Django, which revolutionized website construction, celebrating its 10th anniversary".Lawrence Journal-World. 9 July 2015. Retrieved18 October 2019.
  68. ^"Django Girls - start your journey with programming". Retrieved21 October 2019.
  69. ^"Django groups".Meetup.
  70. ^Shopify."– Liquid template language".Liquid template language.
  71. ^"Template::Swig - Perl interface to Django-inspired Swig templating engine. - metacpan.org".metacpan.org.
  72. ^Symfony."Home - Twig - The flexible, fast, and secure PHP template engine".twig.sensiolabs.org. Archived fromthe original on 9 July 2017. Retrieved10 December 2014.
  73. ^"twigjs/twig.js".GitHub.
  74. ^"Welcome - Jinja2 (The Python Template Engine)".jinja.pocoo.org.
  75. ^"erlydtl/erlydtl".GitHub.
  76. ^"django CMS - Enterprise Content Management with Django - django CMS".www.django-cms.org. Retrieved11 November 2020.

Bibliography

[edit]

External links

[edit]
Wikimedia Commons has media related toDjango (web framework).
.NET
C++
ColdFusion
Common Lisp
Haskell
Java
JavaScript
Perl
PHP
Python
Ruby
Rust
Scala
Smalltalk
Other languages
Retrieved from "https://en.wikipedia.org/w/index.php?title=Django_(web_framework)&oldid=1291169574"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp