Posts

Showing posts with the label Django

Django Cheatsheet

Image
What is Django? Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source. It is used for rapid development of web based application. Advantages : 1. Django was designed to help developers take applications from concept to completion as quickly as possible. 2. Django takes security seriously and helps developers avoid many common security mistakes. 3. Some of the busiest sites on the web leverage Django’s ability to quickly and flexibly scale. Installing Django + Setup pip install django Creating a project The below command creates a new project django-admin startproject projectName Starting a server The below command starts the development server. python manage.py runserver Django MVT Django follows MVT(Model, View, Template) architectur...