Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 27, 2022 03:04 pm GMT

In One Minute : Django

Django is an open-source server-side web application framework written in Python.
It is designed to reduce the effort required to create complex data-driven websites and web applications, with a special focus on less code, no-redundancy and being more explicit than implicit.

Django was created 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.

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

Django follows the mvc (model-view-controller) architectural pattern. This consists of:

  • an object-relational mapper that mediates between data models
  • (Python classes) and a relational database ("Model")
  • a system for processing requests with a web templating system ("View")
  • a regular-expression-based URL dispatcher ("Controller")

Some well-known sites that use Django include Instagram, Mozilla, Disqus, Bitbucket, Nextdoor and Clubhouse.

Official website :- https://www.djangoproject.com/
Documentation :- https://docs.djangoproject.com/
Download :- https://www.djangoproject.com/download/


Original Link: https://dev.to/rakeshkr2/in-one-minute-django-3cip

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To