September 2017
Intermediate to advanced
206 pages
4h 34m
English
Django is a popular web framework for building web applications. You can use it to deliver ad content. Django provides a complete API to build a web application, including database access.
You can install it officially via pip. Type this command:
$ pip install Django
For testing, we'll build a simple web application. We can create a new web project using django-admin. For instance, we'll create a project called mysite. You can type this command:
$ django-admin startproject mysite
It will generate a web application with a default template. The program will create the <project_name> folder. You can see the project structure here:

Read now
Unlock full access