Advanced Web Development with Django

Advanced Web Development with Django

English | MP4 | AVC 1920×1080 | AAC 48KHz 2ch | 2h 49m | 556 MB

Your one-stop guide to mastering the Django framework!

Django is one of the world’s leading web development platforms and follows the model-view-template development method. This Python web framework makes your app-building experience smoother, faster, and easier. This has been (and continues to be) the key feature behind the success of many start-ups across the world.

You’ll learn the skills needed to develop powerful websites quickly, with code that is clean and easy to maintain. This course will focus on how to keep your projects secure, how to integrate third-party libraries to build out quick, but powerful APIs, and how to make your projects easier to work with. We start off by learning how class-based views work so that you can fully benefit from this powerful, but often poorly understood feature. You’ll then create custom middleware to help you better organize frequently used code.

Have you ever wanted to build a complete REST API? We’’ll do just that, starting out with a basic read-only API and then adding key-based authentication to allow the full range of CRUD functionality. We’ll also utilize model managers and the Q method so that we can make it easier to get the data we need to use our views and clients. For the finishing touches, we’ll delve into the details of caching, to improve our application performance, and then add custom management commands to help us automate routine tasks. We will also show you how to secure your web App using various Django tools. By the end of this video course, you will emerge as a fully-fledged Django expert

Fine-tune your knowledge of Django with the help of these bite-size videos, which will take you through the advanced concepts of this technology coupled with a practical implementation.

What You Will Learn

  • Use complex class-based views to implement a variety of functionalities in Django
  • Understand how unit testing and integration testing differs
  • Use an ideal Django environment for your projects
  • Perform repeat complex queries by using managers with your database models
  • Automate tasks that run at a specific time or interval with the aid of Crontab
  • Manage multiple environments and developer setups in Django
  • Best practices for unit testing and securing your project
  • Understand the new features Pipenv provides
  • Learn and understand how the internals of GraphQL work
  • Learn to build a power GraphQL API
Table of Contents

Advanced Class Based Views
1 The Course Overview
2 Extending Class Based Views
3 Using Mixins
4 Creating Custom CBV’s
5 Building Switchboard Views
6 Getting Help with Class Based Views

Building a REST API#
7 Using Django Rest Frame to Scaffold
8 CBV’s in Django Rest Framework
9 Authentication with DRF

Graphql an Alternative API
10 Introduction to GraphQL
11 Building a Basic Schema
12 Building Custom Objects
13 Working With Mutations

Optimizing Your Environment
14 Pipenv the New PIP
15 Separating Settings Files
16 Custom Pipenv Environment

Tests, Tests, Tests
17 Why Testing Matters
18 How Django Handles Testing
19 Testing Models
20 Testing Views
21 Testing It All Together

Securing Django
22 Security in Django
23 Securing the Django Admin
24 Planning for Failure