Английская Википедия:Django (web framework)

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Short description Шаблон:Other uses Шаблон:Use dmy dates Шаблон:Infobox software Django (Шаблон:IPAc-en Шаблон: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 Simon 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] Adrian 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

Файл:Django useradmin.png
Screenshot of the Django admin interface for modifying a user account

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:

Extensibility

Шаблон:Primary sources

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 in conjunction with Apache, Nginx using WSGI, Gunicorn, or Cherokee using flup (a Python module).[20][21] 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.[22] Django officially supports five database backends: PostgreSQL, MySQL, MariaDB, SQLite, and Oracle.[23] Microsoft SQL Server can be used with django-mssql while similarly external backends exist for IBM Db2,[24] SQL Anywhere[25] and Firebird.[26] There is a fork named django-nonrel, which supports NoSQL databases, such as MongoDB and Google App Engine's Datastore.[27]

Django may also be run in conjunction with Python 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 can provide functionality to compile Django in to a .war suitable for deployment.[28]

Version history

The Django team will occasionally designate certain releases to be "long-term support" (LTS) releases.[29] 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[30] End of mainstream support End of extended support Notes[31]
scope="row" Шаблон:Version[32] Шаблон:Dts
scope="row" Шаблон:Version[33] Шаблон:Dts "new-admin"
scope="row" Шаблон:Version[34] Шаблон:Dts "magic removal"
scope="row" Шаблон:Version[35] Шаблон:Dts "newforms", testing tools
scope="row" Шаблон:Version[36] Шаблон:Dts API stability, decoupled admin, unicode
scope="row" Шаблон:Version[37] Шаблон:Dts Aggregates, transaction based tests
scope="row" Шаблон:Version[38] Шаблон:Dts Multiple db connections, CSRF, model validation
scope="row" Шаблон:Version[39] Шаблон:Dts Шаблон:Dts Шаблон:Dts Class based views, staticfiles
scope="row" Шаблон:Version[40] Шаблон:Dts Шаблон:Dts Шаблон:Dts Time zones, in browser testing, app templates.
scope="row" Шаблон:Version[41] Шаблон:Dts Шаблон:Dts Шаблон:Dts Python 3 Support, configurable user model
scope="row" Шаблон:Version[42] Шаблон:Dts Шаблон:Dts Шаблон:Dts Dedicated to Malcolm Tredinnick, db transaction management, connection pooling.
scope="row" Шаблон:Version[43] Шаблон:Dts Шаблон:Dts Шаблон:Dts Migrations, application loading and configuration.
scope="row" Шаблон:Version[44] Шаблон:Dts Шаблон:Dts Шаблон:Dts Native support for multiple template engines. Support ended on 1 April 2018
scope="row" Шаблон:Version[45] Шаблон:Dts Шаблон:Dts Шаблон:Dts Automatic password validation. New styling for admin interface.
scope="row" Шаблон:Version[46] Шаблон:Dts Шаблон:Dts Шаблон:Dts Full text search for PostgreSQL. New-style middleware.
scope="row" Шаблон:Version[47] Шаблон:Dts Шаблон:Dts Шаблон:Dts Last version to support Python 2.7. Support ended on 1 April 2020
scope="row" Шаблон:Version[48] Шаблон:Dts Шаблон:Dts Шаблон:Dts First Python 3-only release, Simplified URL routing syntax, Mobile friendly admin.
scope="row" Шаблон:Version[49] Шаблон:Dts Шаблон:Dts Шаблон:Dts Model "view" permission.
scope="row" Шаблон:Version[50] Шаблон:Dts Шаблон:Dts Шаблон:Dts Security release.
scope="row" Шаблон:Version[51] Шаблон:Dts Шаблон:Dts Шаблон:Dts ASGI support
scope="row" Шаблон:Version[52] Шаблон:Dts Шаблон:Dts Шаблон:Dts Asynchronous views and middleware
scope="row" Шаблон:Version[53] Шаблон:Dts Шаблон:Dts April 2024 Tracking many to many relationships, added support for Python 3.11
scope="row" Шаблон:Version[54] Шаблон:Dts Шаблон:Dts April 2023 Support for pytz is now deprecated and will be removed in Django 5.0.
scope="row" Шаблон:Version[55] Шаблон:Dts April 2023 December 2023 Asynchronous ORM interface, CSRF_COOKIE_MASKED setting, outputting a form, like {{ form }}
scope="row" Шаблон:Version[56] Шаблон:Dts December 2023 April 2026 Psycopg 3 support, ENGINE as django.db.backends.postgresql supports both libraries.
scope="row" Шаблон:Version Шаблон:Dts August 2024 April 2025
Шаблон: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;[57] while another is held in the United States in August or September, in various cities.[58] 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.[59] The 2014 DjangoCon US returned to Portland, OR from 30 August to 6 September. The 2015 DjangoCon US was held in Austin, TX from 6 to 11 September 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 17 to 22 July.[60] The 2017 DjangoCon US was held in Spokane, WA;[61] in 2018 DjangoCon US was held in San Diego, CA.[62] DjangoCon US 2019 was held again in San Diego, CA from Sept 22–27. DjangoCon 2021 took place virtually and in 2022, DjangoCon US returned to San Diego from October 16th to the 21st.

Django mini-conferences are usually held every year as part of the Australian Python Conference 'PyCon AU'.[63] 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, the most notable group is the Django Girls organization, which began in Poland but now has had events in 91 countries.[64][65][66]

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:

CMSs based on Django Framework

Django as a framework is capable of building a complete CMS, however there are dedicated CMS projects which are built upon and extend the Django framework. Below is a list of a few of the more popular Django-based CMSs:

See also

Шаблон:Portal

References

Шаблон:Reflist

Bibliography

Шаблон:Refbegin

Шаблон:Refend

External links

Шаблон:Commons category

Шаблон:Prone to spam

Шаблон:Python web frameworks Шаблон:Web frameworks

  1. Шаблон:Cite web
  2. 2,0 2,1 Шаблон:Cite web
  3. 3,0 3,1 Шаблон:Cite book
  4. Шаблон:Cite web
  5. Шаблон:Cite web
  6. Шаблон:Cite web
  7. Шаблон:Cite web
  8. Шаблон:Cite web
  9. Шаблон:Cite web
  10. Шаблон:Cite web
  11. Шаблон:Cite web
  12. Шаблон:Cite web
  13. Шаблон:Cite web
  14. Шаблон:Cite web
  15. Шаблон:Cite web
  16. Шаблон:Cite web
  17. Шаблон:Cite web
  18. Шаблон:Cite web
  19. Шаблон:Cite web
  20. Шаблон:Cite web
  21. Шаблон:Cite web
  22. How to use Django with Apache and mod_wsgi Шаблон:Webarchive. Official Django documentation.
  23. Шаблон:Cite web
  24. Шаблон:Cite web
  25. Шаблон:Cite web
  26. Шаблон:Cite web
  27. Шаблон:Cite web
  28. Шаблон:Cite web
  29. Шаблон:Cite web
  30. Шаблон:Cite web
  31. Шаблон:Cite web
  32. "Introducing Django 0.90". Django weblog. Retrieved 2 February 2013.
  33. "Django 0.91 released". Django weblog. Retrieved 2 February 2013.
  34. "Introducing Django 0.95". Django weblog. Retrieved 2 February 2013.
  35. "Announcing Django 0.96!". Django weblog. Retrieved 2 February 2013.
  36. "Django 1.0 released!". Django weblog. Retrieved 2 February 2013.
  37. "Django 1.1 released". Django weblog. Retrieved 2 February 2013.
  38. "Django 1.2 released". Django weblog. Retrieved 2 February 2013.
  39. "Django 1.3 released". Django weblog. Retrieved 2 February 2013.
  40. "Django 1.4 released". Django weblog. Retrieved 2 February 2013.
  41. "Django 1.5 released" Django weblog. Retrieved 27 February 2013.
  42. "Django 1.6 released" Django weblog. Retrieved 6 November 2013.
  43. "Django 1.7 released" Django weblog. Retrieved 4 September 2014.
  44. "Django 1.8 released" Django weblog. Retrieved 2 April 2015.
  45. "Django 1.9 released" Django weblog. Retrieved 1 December 2015.
  46. "Django 1.10 released" Django weblog. Retrieved 1 August 2016.
  47. "Django 1.11 released" Django weblog. Retrieved 4 April 2017.
  48. "Django 2.0 released" Django weblog. Retrieved 3 December 2017.
  49. "Django 2.1 released" Django weblog. Retrieved 2 August 2018.
  50. Django 2.2 release notes. Retrieved 1 July 2019.
  51. Django 3.0 release notes. Retrieved 2 December 2019.
  52. Django 3.1 release notes. Retrieved 5 August 2020.
  53. Шаблон:Cite web
  54. Шаблон:Cite web
  55. Шаблон:Cite web
  56. Шаблон:Cite web
  57. DjangoCon EU series Шаблон:Webarchive, Lanyrd.com
  58. DjangoCon US series Шаблон:Webarchive, Lanyrd.com
  59. Шаблон:Cite web
  60. Шаблон:Cite web
  61. Шаблон:Cite web
  62. Шаблон:Cite web
  63. DjangoCon AU. Djangocon.com.au. Retrieved on 2019-12-16.
  64. Шаблон:Cite web
  65. Шаблон:Cite web
  66. Шаблон:Cite web
  67. Шаблон:Cite web
  68. Шаблон:Cite web
  69. Шаблон:Cite web
  70. Шаблон:Cite web
  71. Шаблон:Cite web
  72. Шаблон:Cite web
  73. Шаблон:Cite web