It is a user forum, let's post here, anything!
-
Post life story,
-
Post project you have been working on,
-
Post food
-
Post
-
post
-
post...
Django is a web framework that follows the model-template-view (MVC) architectural pattern.
The core Django framework can be seen as an MVC architecture.
- It consists of an object-relational mapper (ORM) that mediates between data models (defined as Python classes)
- Model: a relational database.(model.py)
- View: a system for processing HTTP requests with a web templating system.(view.py)
- Controller: a regular-expression-based URL dispatcher.(url.py)
- Fast: no need so many configurations
- Many many libraries available
- Security & scalability
- A library is a collection of functions / objects that serves one particular purpose.
- A framework is a collection of patterns and libraries,components, to help with building an application.
- An API is an interface for other programs(i.e libraries) to interact with your program without having direct access.