Tango With Django 4 (The Book - Black Friday to Cyber Monday 50% off Deal)
$14.99
Minimum price
$19.99
Suggested price

Tango With Django 4

A beginner's guide to web development with Django 4

About the Book

In this book, you will learn how to build web applications using Django 4 by building a simple web app called Rango, a directory of categories and links. Through the process, you will learn how to set up your Python environment and Django projects, before learning the key design pattern behind Django: Model-View-Template.

Throughout the book, we provide workflows to get you into the Django mindset, reducing the learning curve, explaining the hows and whys of software development, and advocating best practices when developing your web apps. Through the book, you will learn how to integrate user authentication, build and customize forms and templates, along with advanced features like class-based views and testing.

In addition, we've included chapters that range from design to deployment -- covering the full stack of web development. So you will also learn about how to incorporate CSS and Twitter's Bootstrap, Javascript, and JQuery, along with external APIs, like Microsoft Azure's Bing Search API. We also cover how to deploy your Django application to PythonAnywhere.com.

This is the fifth edition of Tango with Django which has now been heavily revised and upgraded to make use of Django 4+ using Python 3.8+. The book was first launched in October 2013 by Dr. Leif Azzopardi and Dr. David Maxwell which we developed to teach web development at the University of Glasgow. The book has been used as the course text ever since, with thousands of undergraduate and postgraduate students using it over the years. Previous editions of the book are available at: www.tangowithdjango.com -- and previous versions of the book has been downloaded over 2 million times.

So, if you want to learn Django and build web applications, then Tango with Django provides an all-round end-to-end guide for beginners.

About the Authors

Leif Azzopardi
Leif Azzopardi

Leif Azzopardi is passionate about Web Development, Web Design, Information Architecture and Software Engineering. His research interests are focused on Information Retrieval and Search Engine Technologies.

David Maxwell
David Maxwell

David Maxwell has a PhD in Computing Science from the University of Glasgow. During his time as a student, he taught Java, Python and Web Development. His research focused on Information Retrieval.

Packages

The Book - Black Friday to Cyber Monday 50% off Deal

Get 50% off from Black Friday to Cyber Monday!!

  • PDF

  • EPUB

  • WEB

  • English

$14.99
Minimum price
$19.99
Suggested price
The Book
  • PDF

  • EPUB

  • WEB

  • English

$12.99
Minimum price
$29.99
Suggested price

Table of Contents

  • 1 Overview
    • 1.1 Why Work with this Book?
    • 1.2 What you will Learn
    • 1.3 Technologies and Services
    • 1.4 Rango: Initial Design and Specification
    • 1.5 Summary
  • 2 Getting Ready to Tango
    • 2.1 Python 3
    • 2.2 Virtual Environments
    • 2.3 The Python Package Manager
    • 2.4 Integrated Development Environment
    • 2.5 Version Control
  • 3 Django Basics
    • 3.1 Creating Your Django Project
    • 3.2 Creating a Django App
    • 3.3 Creating a View
    • 3.4 Mapping URLs
    • 3.5 Basic Workflows
  • 4 Templates and Media Files
    • 4.1 Using Templates
    • 4.2 Serving Static Media Files
    • 4.3 Serving Media
    • 4.4 Basic Workflow
  • 5 Models and Databases
    • 5.1 Rango’s Requirements
    • 5.2 Telling Django about Your Database
    • 5.3 Creating Models
    • 5.4 Creating and Migrating the Database
    • 5.5 Django Models and the Shell
    • 5.6 Configuring the Admin Interface
    • 5.7 Creating a Population Script
    • 5.8 Workflow: Model Setup
  • 6 Models, Templates and Views
    • 6.1 Workflow: A Data-Driven Page
    • 6.2 Showing Categories on Rango’s Homepage
    • 6.3 Creating a Details Page
  • 7 Forms
    • 7.1 Workflow: Capturing User Data via Forms
    • 7.2 Page and Category Forms
  • 8 Working with Templates
    • 8.1 Using Relative URLs in Templates
    • 8.2 Dealing with Repetition
    • 8.3 Template Inheritance
    • 8.4 The render() Method and the request Context
    • 8.5 Custom Template Tags
    • 8.6 Summary
  • 9 User Authentication
    • 9.1 Setting up Authentication
    • 9.2 Password Hashing
    • 9.3 Password Validators
    • 9.4 The User Model
    • 9.5 Implementing Login Functionality
    • 9.6 Restricting Access
    • 9.7 Logging Out
    • 9.8 Tidying up the base.html Hyperlinks
    • 9.9 Taking it Further
  • 10 Cookies and Sessions
    • 10.1 Cookies, Cookies Everywhere!
    • 10.2 Sessions and the Stateless Protocol
    • 10.3 Setting up Sessions in Django
    • 10.4 A Cookie Tasting Session
    • 10.5 Client-Side Cookies: A Site Counter Example
    • 10.6 Session Data
    • 10.7 Browser-Length and Persistent Sessions
    • 10.8 Clearing the Sessions Database
    • 10.9 Basic Considerations and Workflow
  • 11 User Authentication with Django-Registration-Redux
    • 11.1 Setting up Django Registration Redux
    • 11.2 Functionality and URL mapping
    • 11.3 Setting up the Templates
  • 12 Bootstrapping Rango
    • 12.1 The Template
    • 12.2 Quick Style Change
  • 13 Adding Search to Rango
    • 13.1 The Serp API
    • 13.2 Adding Search Functionality
    • 13.3 Putting Search into Rango
  • 14 Making Rango Tango Exercises
    • 14.1 Tracking Page Clickthroughs
    • 14.2 Searching Within a Category Page
    • 14.3 Create and View User Profiles
  • 15 Making Rango Tango Hints
    • 15.1 Track Page Clickthroughs
    • 15.2 Searching Within a Category Page
    • 15.3 Creating a UserProfile Instance
  • 16 Class-Based Views
    • 16.1 Viewing your Profile
    • 16.2 Listing all Users
  • 17 JQuery Crash Course
    • 17.1 Including JQuery
    • 17.2 Testing your Setup
    • 17.3 Further DOM Manipulation Examples
    • 17.4 Debugging Hints
  • 18 AJAX in Django with JQuery
    • 18.1 AJAX and Rango
    • 18.2 Adding a “Like” Button
    • 18.3 Further AJAX-ing
    • 18.4 Setting up your Web Application
    • 18.5 Log Files
  • 19 Final Thoughts
    • 19.1 Acknowledgements
  • 20 Setting up your System
    • 20.1 Installing Python 3 and pip
  • 21 A Crash Course on Git
    • 21.1 Why Use Version Control?
    • 21.2 How Git Works
    • 21.3 Setting up Git
    • 21.4 Basic Commands and Workflow
    • 21.5 Recovering from Mistakes
  • 22 A Crash Course in UNIX-based Commands
    • 22.1 Using the Terminal
    • 22.2 Core Commands
  • 23 A Crash Course in CSS
    • 23.1 Including Stylesheets
    • 23.2 Basic CSS Selectors
    • 23.3 Element Selectors
    • 23.4 Fonts
    • 23.5 Colours and Backgrounds
    • 23.6 Containers, Block-Level and Inline Elements
    • 23.7 Basic Positioning
    • 23.8 The Box Model
    • 23.9 Styling Lists
    • 23.10 Styling Links
    • 23.11 The Cascade
    • 23.12 Additional Reading
  • Notes

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

80% Royalties. Earn $16 on a $20 book.

We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub