May 2020
Intermediate to advanced
404 pages
10h 52m
English
In this section, we'll be working with Django. Make sure that you have a working Django installation on your system before proceeding with this section. You can find installation instructions for Django in the A brief introduction to Django web development section in Chapter 8, Deep Learning on Microsoft Azure Using Python.
Now, we will create a Django project. To do so, we use the following command:
django-admin startproject webapp
This will create the webapp directory in the current folder. We will be adding all of our future code in this directory. The current directory structure looks as follows:
webapp/ manage.py webapp/ __init__.py settings.py urls.py wsgi.py db.sqlite3
With this done, we are now ready to ...
Read now
Unlock full access