User:Akash1806/Django (web framework)

Django
Original author(s)Lawrence Journal-World
Developer(s)Django Software Foundation
Initial release21 July 2005; 18 years ago (2005-07-21)[1]
Stable release2.2.3[2] (1 July 2019; 4 years ago (2019-07-01)) [±]
Preview release2.2 rc1[3] (18 March 2019; 5 years ago (2019-03-18)) [±]
Written inPython
Size6.92 MB
TypeWeb application framework
License3-clause BSD
Websitedjangoproject.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] Bitbucket[13] and NASA Science.[14]

History edit

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.[15] It was released publicly under a BSD license in July 2005. The framework was named after guitarist Django Reinhardt.[15]

Django originated to solve the problem of building content delivering websites fast enough to keep up with the pace of a news organization. It is considered to be well suited for developing Content management systems and database driven websites[16]. This suitability can be attributed to its useful features like - a default admin site that comes bundled with every Django application and is considered a typical part of such systems, an MVC based architecture which calls for separation of code that deals with data and business logic, etc. Some of the particularly popular example of CRM systems built using Django are Mezzazine, djangoCMS and Koalix.

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

The latest stable version of Django, 1.8.5, was released on October 3, 2015[18].

Features edit

Components edit

 
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",[5] the core Django framework can be seen as MVC.[6] It consists of an object-relational mapper (ORM) which 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 which 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 which can use any of several cache methods
  • support for middleware classes which can intervene at various stages of request processing and carry out custom functions
  • an internal dispatcher system which 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 which 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

Templates edit

Templates provide a way to generate HTML dynamically and present the data generated in response to a request. Any application can optionally choose one or more of several templating engines provided by Django and third parties. Django's built in template system is called Django Template System(DTS). A popular third party choice for a templating engine is Jinja2. Django provides the option of having more than one template engine for a project from version 1.8 onward. A sample template will look like the following:

<html>
  <head><title>Example</title></head>
  <body>
     <!-- picks the user.name variable from the context -->
     Hello {{ user.name }}!!
  </body>
</html>

The Admin site edit

One of the most powerful features of Django is the production ready admin site that is automatically generated for every Django project. It interacts with models to provide an interface for feeding data in to the website. The default admin site provides a lot of useful features out of the box like[19]:

  • an access control list, which allows to create and remove users and their respective privileges,
  • configuring which models need to be exposed to admin interface,
  • simple and useful design providing basic Create, Read, Update and Delete(CRUD) operations
  • easily customizable views to the specific application needs[20]

Bundled applications edit

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

Extensibility edit

Django's configuration system allows third party code to be plugged into a regular project, provided that it follows the reusable app[23] conventions. More than 2500 packages[24] 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,[25] 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 edit

Django can be run in conjunction with Apache, NGINX using WSGI, Gunicorn, or Cherokee using flup (a Python module).[26][27] 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.[28] Django officially supports four database backends: PostgreSQL, MySQL, SQLite, and Oracle. Microsoft SQL Server can be used with django-mssql on Microsoft operating systems,[29] while similarly external backends exist for IBM DB2,[30] SQL Anywhere[31] and Firebird.[32] There is a fork named django-nonrel, which supports NoSQL databases, such as MongoDB and Google App Engine's Datastore.[33]

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.[34]

Google App Engine includes support for Django version 1.x.x[35] as one of the bundled frameworks.Heroku also includes support for Django version 1.x.x[36].

Comparison with other MVC frameworks edit

Django is among the most popular web development frameworks, and is topped by Microsoft’s ASP.net and Ruby on Rails in popularity.[37].

Source availability edit

Django and Ruby on rails are both free and open sourced[38][39] , while ASP.net has recently been open sourced in 2014, with Microsoft Visual Studio, the Integrated development environment for ASP.net, still being closed source and maintained by Microsoft.

DRY Principle edit

All the three frameworks favor the "Don't Repeat Yourself", or the DRY principle for writing applications and thereby emphasize on writing less redundant and more reusable code[40] [41] [42].

Explicit over implicit edit

Django applications are written along the "Explicit over implicit", one of the aphorisms mentioned in [[Python Enhancement Proposal]] 20, The Zen of Python, and hence, widely followed in python programming[43]. Rails application follow a contrary model, where the principle of Convention over configuration plays an important role in making many functionalities automatic without the need to explicitly write code for them[44]. ASP.net also supports Convention over Configuration for faster development.[45]

Database migration edit

Database migration provides a convenient way to create, modify and even change the relational database used by the application along with optionally providing version control like mechanism for the database schema. With version 1.8, Django has started supporting migrations natively, obviating the need for a third party migrations library like South[46]. Rails has native support for database migration since its inception.[47]. ASP.net supports migrations through the Entity framework migrations library[48].

ActiveRecord support edit

Active record is a an architectural pattern that simplifies reading and writing to databases from an application by mapping the database objects to corresponding objects in the application[49].Django and Rails both come with built-in support for Active record. ASP.net can only use Active records through third party libraries like Castle.

Default user authentication edit

User authentication is almost an omnipresent feature in most web applications which makes it an important candidate to be a part of default set of modules for any web framework. Django comes with bundled user authentication module for every project[50]. Rails does not have a bundled authentication gem and one has to include a gem like Devise for this purpose. ASP.net also has a built in authentication module, called ASP.net Login Controls, that can be clubbed with any application[51].

Version managememnt edit

A version manager facilitate the use of different version of the framework for different projects. It can also maintain a completely disjoint set of helper modules for each project. Django manages its different versions across various projects through Python's Virtualenv isolated environment management tool[52]. Rails uses rvm for the same purpose. ASP.net as yet, does not have a version manager like Django and Rails. DNVM, a package manager for ASP, is supposed to be part of ASP.net version 5[53].

Performance and optimization edit

Django serves some of the busiest websites on the internet handling billions of page views per month[54]. Performance of Django websites can be improved by using appropriate production configurations for databases, page rendering etc. Some common optimizations used by Django websites to scale efficiently include:[55]

  • setting the database connection to be persistent, instead of creating one on every request
  • using cached loading for templates instead of the default per request searching and loading model
  • use some for of in-memory caching for storing sessions. The default way is to store it in database,which may create a bottleneck.
  • optimize sql queries used by the application and identify and remove redundant ones

Community edit

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;[56] while another is held in the United States in September, usually in Portland, Oregon.[57] 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.[58]

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

Other languages edit

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.

Integrated development environments for Python edit

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.[60]

Criticism edit

Django is considered optimal choice for data driven websites and consequently not as well suited for not very dynamic websites. Other python frameworks like Pyramid have improved upon this aspect[62]. It is built using the Active Record architecture pattern as opposed to the Unit of work pattern used in SQLAlchemy which is considered superior[63] and adopted by Django's counterparts like Pyramid. It is not very well suited for smaller projects that do not use a database, as there is no way to turn off database integration in Django.

Version history edit

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

See also edit

Bibliography edit

  • 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 978-0981467344
  • Jaiswal, Sanjeev; Kumar, Ratan (22 June 2015), Learning Django Web Development (1st ed.), Packt, p. 405, ISBN 978-1783984404
  • Ravindrun, Arun (31 March 2015), Django Design Patterns and Best Practices (1st ed.), Packt, p. 180, ISBN 978-1783986644
  • Osborn, Tracy (May 2015), Hello Web App (1st ed.), Tracy Osborn, p. 142, ISBN 978-0986365911
  • Bendoraitis, Aidas (October 2014), Web Development with Django Cookbook (1st ed.), Packt, p. 294, ISBN 978-1783286898
  • Baumgartner, Peter; Malet, Yann (2015), High Performance Django (1st ed.), Lincoln Loop, p. 184, ISBN 978-1508748120
  • Elman, Julia; Lavin, Mark (2014), Lightweight Django (1st ed.), O'Reilly Media, p. 246, ISBN 978-1491945940
  • Percival, Harry (2014), Test-Driven Development with Python (1st ed.), O'Reilly Media, p. 480, ISBN 978-1449364823

This list is an extraction from Current Django Books

References edit

  1. ^ "Django FAQ". Retrieved 2 September 2014.
  2. ^ Graham, Tim (1 July 2019). "News and Events". Django Weblog. Retrieved 17 July 2019.
  3. ^ Gibson, Carlton (18 March 2019). "Django 2.2 release candidate 1 released". Django Weblog. Retrieved 27 March 2019.
  4. ^ What does "Django" mean, and how do you pronounce it?
  5. ^ a b Django FAQ about MVC in Django
  6. ^ a b 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. ^ https://www.djangosites.org/s/science-nasa-gov/
  15. ^ a b "Django's History". The Django Book. Retrieved 6 June 2013.
  16. ^ http://www.djangobook.com/en/2.0/chapter01.html
  17. ^ Announcing the Django Software Foundation
  18. ^ https://docs.djangoproject.com/en/1.8/releases/1.8.5/
  19. ^ http://www.atomsolutions.net/blog/?p=10
  20. ^ http://www.ibm.com/developerworks/library/os-django-admin/
  21. ^ "Security in Django". Django Project. Retrieved 25 March 2013.
  22. ^ Socol, James (2012). "Best Basic Security Practices (Especially with Django)". Retrieved 25 March 2013.
  23. ^ What is a reusable app?
  24. ^ djangopackages.com, an open source package repository for the Django framework
  25. ^ Django design philosophies
  26. ^ Django documentation of deployment
  27. ^ Cookbook: Setting up Django
  28. ^ How to use Django with Apache and mod_wsgi. Official Django documentation.
  29. ^ https://bitbucket.org/Manfre/django-mssql/src
  30. ^ https://code.google.com/p/ibm-db/
  31. ^ https://code.google.com/p/sqlany-django/
  32. ^ https://github.com/maxirobaina/django-firebird
  33. ^ http://django-nonrel.org/
  34. ^ https://code.google.com/p/django-jython/
  35. ^ Running Pure Django Projects on Google App Engine. Code.google.com (2010-11-01). Retrieved on 5 December 2011.
  36. ^ Getting started with Django on Heroku. devcenter.heroku.com (2015-08-03). Retrieved on 3 October 2015.
  37. ^ Top web frameworks. hotframeworks.com (2015-08-03). Retrieved on 3 October 2015.
  38. ^ Django Project home. djangoproject.com (2015-08-03). Retrieved on 3 October 2015.
  39. ^ Ruby on Rails home. rubyonrails.org (2015-08-03). Retrieved on 3 October 2015.
  40. ^ asp.net http://dotnetcodr.com/2013/10/17/the-dont-repeat-yourself-dry-design-principle-in-net-part-1/
  41. ^ https://docs.djangoproject.com/en/1.8/misc/design-philosophies/#don-t-repeat-yourself-dry
  42. ^ http://guides.rubyonrails.org/v2.3.11/getting_started.html
  43. ^ Python PEP 20. python.org (2015-08-03). Retrieved on 3 October 2015.
  44. ^ Ruby on Rails getting started guide. guides.rubyonrails.org (2015-08-03). Retrieved on 3 October 2015.
  45. ^ https://www.simple-talk.com/dotnet/asp.net/asp.net-mvc-controllers-and-conventions/
  46. ^ https://docs.djangoproject.com/en/1.8/topics/migrations/
  47. ^ http://edgeguides.rubyonrails.org/active_record_migrations.html
  48. ^ http://www.dotnet-tricks.com/Tutorial/entityframework/R54K181213-Understanding-Entity-Framework-Code-First-Migrations.html
  49. ^ http://www.martinfowler.com/eaaCatalog/activeRecord.html
  50. ^ https://docs.djangoproject.com/en/1.8/topics/auth/
  51. ^ https://msdn.microsoft.com/en-us/library/ms178329.aspx
  52. ^ http://tutorial.djangogirls.org/en/django_installation/index.html
  53. ^ http://www.asp.net/vnext
  54. ^ http://www.ibm.com/developerworks/library/os-django-admin/
  55. ^ http://www.revsys.com/blog/2015/may/06/django-performance-simple-things/
  56. ^ DjangoCon EU series, Lanyrd.com
  57. ^ DjangoCon US series, Lanyrd.com
  58. ^ "DjangoCon". DjangoCon. Retrieved 29 July 2012.{{cite web}}: CS1 maint: url-status (link)
  59. ^ DjangoCon AU 2013. Djangocon.com.au. Retrieved on 2014-05-30.
  60. ^ Django development IDEs discussion at Stackoverflow
  61. ^ NetBeans Django Plugin
  62. ^ http://nando.oui.com.br/2014/04/04/why_i_sort_of_dislike_django.html
  63. ^ http://techspot.zzzeek.org/files/2012/session.key.pdf
  64. ^ "Introducing Django 0.90". Django weblog. Retrieved 2 February 2013.
  65. ^ "Django 0.91 released". Django weblog. Retrieved 2 February 2013.
  66. ^ "Introducing Django 0.95". Django weblog. Retrieved 2 February 2013.
  67. ^ "Announcing Django 0.96!". Django weblog. Retrieved 2 February 2013.
  68. ^ "Django 1.0 released!". Django weblog. Retrieved 2 February 2013.
  69. ^ "Django 1.1 released". Django weblog. Retrieved 2 February 2013.
  70. ^ "Django 1.2 released". Django weblog. Retrieved 2 February 2013.
  71. ^ "Django 1.3 released". Django weblog. Retrieved 2 February 2013.
  72. ^ "Django 1.4 released". Django weblog. Retrieved 2 February 2013.
  73. ^ https://docs.djangoproject.com/en/1.7/internals/release-process/#long-term-support-lts-releases
  74. ^ "Django 1.5 released" Django weblog. Retrieved 27 February 2013.
  75. ^ "Django 1.6 released" Django weblog. Retrieved 6 November 2013.
  76. ^ "Django 1.7 released" Django weblog. Retrieved 4 September 2014.
  77. ^ "Django 1.8 released" Django weblog. Retrieved 2 April 2015.

External links edit


Category:Python web application frameworks Category:Free software programmed in Python Category:Web application frameworks Category:Software using the BSD license