Introduction to Django framework Table of content What is web framework Django Django features Flask vs Django Django setup and installation Create a django project Register an app and run the project What is web framework A web framework is a collection of modules, packages and libraries to speed-up the web development. Django Django is a Python Web framework. It follows MVT Design Pattern. M stands for Model which deals with data accces layer. T stands for template engine which represents the presentation layer and View is the controller that holds the business logic of the application. Django features: 1. Rapid development - easy to setup and build a new project. 2. Django provides different components like authentication, model, modelforms, etc, which helps in development 3. Security - Django provides features to secure the project. 4. Scalability - Django applications are highly scalable. Other Python Web Frameworks Cherry pie Web2Py Pyramid Us...
Software Engineering Crunch (New post every week)