Computer Science, asked by ruchitpatel6198, 1 year ago

What are the technolofy used in django web applicaton?

Answers

Answered by raina24
3
Python / Django. Python is a programming language, while Djangois a Python web developmentframework. Django is a web framework that makes it easier to build web apps more quickly and with less code. It is used by some of the largest websites in the world including Instagram, NASA, The Washington Post and many more.
Answered by prakhargurunani
1

• Django’s primary goal is to ease the creation of complex database driven websites through small syntaxes. It mainly emphasizes on reusability of code and rapid development. Many websites have been built using Django. For ex – YouTube, Instagram, Mozilla, The Washington Times, etc. Django is useful for creating apps and websites that have a specific target and have a common database architecture. It is useful in interlinking web pages to their templates and returning specific responses according to user input. Its main advantage is that it helps to display dynamic content in a very few lines of code and can be modified easily.  

It works on the model-view-template structure.

 Model – A model is a single definitive source of information about the data. It contains the fields of data which would be included in the database. It usually connects to one database file.

 View – A view in a class or method which takes a web request and returns a certain web response in the form of HTML templates or HTML forms.

 Template – It contains the basic static parts of the HTML output as well as some special syntax describing how the dynamic content will be displayed.

Similar questions