Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Django 4 for the Impatient
Django 4 for the Impatient

Django 4 for the Impatient: Learn the core concepts of Python web development with Django in one weekend

Arrow left icon
Profile Icon Greg Lim Profile Icon Daniel Correa
Arrow right icon
$24.99 $36.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.8 (10 Ratings)
eBook Jun 2022 190 pages 1st Edition
eBook
$24.99 $36.99
Paperback
$45.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Greg Lim Profile Icon Daniel Correa
Arrow right icon
$24.99 $36.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.8 (10 Ratings)
eBook Jun 2022 190 pages 1st Edition
eBook
$24.99 $36.99
Paperback
$45.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$24.99 $36.99
Paperback
$45.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Django 4 for the Impatient

Chapter 1: Installing Python and Django

Welcome to Django 4 for the Impatient! This book focuses on the key tasks and concepts to help you to learn and build Django applications fast. It is designed for readers who don't need all the details about Django except for concepts that you really need to know. By the end of this book, you will be confident creating your own Django projects.

So, what's Django? Django is a free, open source web framework for building modern Python web applications. Django helps you quickly build web apps by abstracting away many of the repetitive challenges involved in building a website, such as connecting to a database, handling security, enabling user authentication, creating URL routes, displaying content on a page through templates and forms, supporting multiple database backends, and setting up an admin interface.

This reduction in repetitive tasks allows developers to focus on building a web application's functionality rather than...

Technical requirements

In this chapter, we will be using Python 3.8+ and pip.

The code for this chapter is located at https://github.com/PacktPublishing/Django-4-for-the-Impatient/tree/main/Chapter01/moviereviews.

Understanding the app we will be building

For our project, we will be building a movie reviews app that will allow users to view and search for movies, as shown in Figure 1.1:

Figure 1.1 – A home page with search functionality

Users will also be able to log in and post reviews of any movies they may have watched, as shown in Figure 1.2:

Figure 1.2 – A movie page listing reviews

They will be able to type in and add their review, as shown in Figure 1.3:

Figure 1.3 – An interface for writing a review

Users can see the list of reviews on a movie's page and post, edit, or delete their own review if they are logged in. They will not be able to edit or delete other users' reviews though. Through building this app, we will learn a lot of concepts, such as forms, user authorization, permissions, foreign keys, and more.

Let's begin by installing Python and Django.

Installing Python

First, let's check whether we have Python installed and, if so, what version we have.

If you are using a Mac, open your Terminal. If you are using Windows, open Command Prompt. For convenience, I will refer to both Terminal and Command Prompt as Terminal throughout the book.

We will need to check whether we have at least Python 3.8 in order to use Django 4. To do so, go to your Terminal and run the following commands.

For macOS, run this:

python3 --version

For Windows, run this:

python --version

This shows the version of Python you have installed. Make sure that the version is at least 3.8. If it isn't, get the latest version of Python by going to https://www.python.org/downloads/ and installing the version for your OS. For Windows, you must select the Add Python 3.* to PATH option, as shown in Figure 1.4:

Figure 1.4 – Install Python on Windows

After the installation, run the command again to check the...

Installing Django

We will be using pip to install Django. pip is the standard package manager for Python to install and manage packages not part of the standard Python library. pip is automatically installed if you downloaded Python from https://www.python.org/.

First, check whether you have pip installed by going to the Terminal and running the following.

For macOS, run this:

pip3

For Windows, run this:

pip

If you have pip installed, the output should display a list of pip commands. To install Django, run the following command:

For macOS, run this:

pip3 install Django==4.0

For Windows, run this:

pip install Django==4.0

The preceding command will retrieve the latest Django code and install it on your machine. After installation, close and reopen your Terminal.

Ensure you have installed Django by running the following commands.

For macOS, run this:

python3 -m django

For Windows, run this:

python -m django

Now, the output will show...

Running the Django local web server

In the Terminal, cd into the created folder:

cd moviereviews

Then, run the following.

For macOS, run this:

python3 manage.py runserver

For Windows, run this:

python manage.py runserver

When you do so, you start the local web server on your machine (for local development purposes). There will be a URL link: http://127.0.0.1:8000/ (equivalent to http://localhost:8000). Open the link in a browser and you will see the default landing page, as shown in Figure 1.6:

Figure 1.6 – The landing page of the Django project

This means that your local web server is running and serving the landing page. Sometimes, you will need to stop the server in order to run other Python commands. To stop the local server, press Ctrl + C in the Terminal.

Summary

In this chapter, you learned how to install and use Python, pip, and Django. You also learned how to create a new Django project and run a Django local web server. In the next chapter, we will look inside the project folder that Django has created for us to understand it better.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Develop web applications with Python and Django quickly
  • Understand Django features with short explanations and learn how to use them right away
  • Create a movie reviews app with a responsive user interface and deploy it to the cloud

Description

Learning Django can be a tricky and time-consuming activity. There are hundreds of tutorials, loads of documentation, and many explanations that are hard to digest. However, this book enables you to use and learn Django in just a couple of days. In this book, you’ll go on a fun, hands-on, and pragmatic journey to learn Django full stack development. You'll start building your first Django app within minutes. You'll be provided with short explanations and a practical approach that cover some of the most important Django features, such as Django Apps’ structure, URLs, views, templates, models, CSS inclusion, image storage, authentication and authorization, Django admin panel, and many more. You'll also use Django to develop a movies review app and deploy it to the internet. By the end of this book, you'll be able to build and deploy your own Django web applications.

Who is this book for?

This book is for Python developers at any level of experience with Python programming who want to build full-stack Python web applications using Django. The book is for absolute Django beginners.

What you will learn

  • Understand and implement Django Apps' basic structure, including URLs, views, templates, and models
  • Add bootstrap to improve the aesthetics of the site
  • Create your own custom pages and have different URLs to route to them
  • Navigate between pages by adding a header bar to all pages
  • Work with databases and models
  • Explore the powerful built-in admin interface with Django
  • Use Django's powerful, built-in authentication system
  • Deploy your Django project on the internet for the world to use

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jun 24, 2022
Length: 190 pages
Edition : 1st
Language : English
ISBN-13 : 9781803239170
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jun 24, 2022
Length: 190 pages
Edition : 1st
Language : English
ISBN-13 : 9781803239170
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 145.97
Becoming an Enterprise Django Developer
$49.99
Django 4 By Example
$49.99
Django 4 for the Impatient
$45.99
Total $ 145.97 Stars icon

Table of Contents

13 Chapters
Chapter 1: Installing Python and Django Chevron down icon Chevron up icon
Chapter 2: Understanding the Project Structure and Creating Our First App Chevron down icon Chevron up icon
Chapter 3: Managing Django URLs Chevron down icon Chevron up icon
Chapter 4: Generating HTML Pages with Templates Chevron down icon Chevron up icon
Chapter 5: Working with Models Chevron down icon Chevron up icon
Chapter 6: Displaying Objects from Admin Chevron down icon Chevron up icon
Chapter 7: Understanding the Database Chevron down icon Chevron up icon
Chapter 8: Extending Base Templates Chevron down icon Chevron up icon
Chapter 9: Creating a Movie Detail Page Chevron down icon Chevron up icon
Chapter 10: Implementing User Signup and Login Chevron down icon Chevron up icon
Chapter 11: Letting Users Create, Read, Update, and Delete Movie Reviews Chevron down icon Chevron up icon
Chapter 12: Deploying the Application to the Cloud Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.8
(10 Ratings)
5 star 50%
4 star 20%
3 star 10%
2 star 0%
1 star 20%
Filter icon Filter
Top Reviews

Filter reviews by




Luis Contreras Aug 21, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
El libro es excelente, y los ejercicios se puede seguir con mucha facilidad. Aprendí cosas bien básicas que me ayudaron a tener las bases para seguir aprendiendo Django.
Amazon Verified review Amazon
chris Adams Mar 18, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I have been programming primarily PHP for 20 years. Thought I would pick up some Python. It is not a very deep text but it is not trying to be. I got a great overview of Django in a few hours and was able to relate the concepts to tools that I was familiar with (basically it is a lot like Laravel). Thanks!
Amazon Verified review Amazon
Venu Gopal Kadamba Jul 19, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book can definitely help the reader to get started with Django, and understand the internals of Django by working on an amazing responsive application.
Amazon Verified review Amazon
Roark Jun 15, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book is thinner than expected, at under 200 pages, however it seems to lay everything out that is needed to get things up and running with Python and Django.Unlike so many books I have tried in recent years, this book sticks to the subject at hand without overwhelming the reader with too many details all at once. Instead, a Web App is built up little by little with each chapter, with a good explanation of the reason each step is taken along the way.There isn't a lot of personality in the way of a for Dummies series, but the subject of building a useful Web App while coming up to speed with Django is presented in a very professional manner. It's like being able to drop in on a very helpful, to-the-point seminar any time you feel like it, and coming away with the knowledge and confidence that is needed to follow through. Bravo!
Amazon Verified review Amazon
Jeff Mahoney Jul 11, 2022
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I really liked that this book was printed in color. How often do you get excited to read a new coding textbook only to find it’s written in black and white. This book is really concise and helpful. Great for the novice programmer! Also enjoyed that it’s projects based which I found unique.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.