Skip to main content

A tool to inspect Django class-based views.

Project description

django-cbv-inspect


A tool to help inspect all class-based views within your Django project 🔎 ✨

Inspired by django-debug-toolbar ❤️


django-cbv-inspect demo




📦 Installation

  1. Install with pip
pip install django-cbv-inspect
  1. Add cbv_inspect to your list of INSTALLED_APPS in your Django settings module
INSTALLED_APPS = [
    ...
    "cbv_inspect",
    ...
]
  1. Add the middleware to your list of MIDDLEWARE classes in your Django settings module
MIDDLEWARE = [
    ...
    "cbv_inspect.middleware.DjCbvInspectMiddleware",
    ...
]
  1. Prerequisites

    In your TEMPLATES settings within your Django settings module, make sure

    1. the BACKEND setting is ""django.template.backends.django.DjangoTemplates""
    2. the APP_DIRS setting is True



🛞 Usage

When all installation steps are done, any html response rendered by a class-based view should display the django-cbv-inspect toolbar on the page.

By default, all class-based views will be processed by the middleware. If you wish to exclude views, there are two options:

Exclude via mixin

from cbv_inspect.mixins import DjCbvExcludeMixin


class MyCoolView(DjCbvExcludeMixin, View):
    pass

Exclude via decorator

from django.utils.decorators import method_decorator
from cbv_inspect.decorators import djcbv_exclude


@method_decorator(djcbv_exclude, name="dispatch")
class MyCoolView(View):
    pass



🧪 Run locally

You can run the example project locally to test things out!

Clone the project and from the root of the repo, run the following Make command to setup the example project:

make run-example

To run unittests with coverage, run

make coverage



⚡️ Features

The django-cbv-inspect toolbar has three main sections:

  1. View information
  2. CBV method call chain
  3. MRO classes

View information

This section shows high level information about the class-based view, request, and url.


CBV method call chain

This is the main section that shows all methods that were excuted for the current class-based view:

It shows:


MRO classes

This section lists all MRO classes of the current class-based view class.

This can come in handy especially with the prior section when mapping the execution of a class-based view.




❓ Why did I build this?

Django class-based views are hard to grasp especially when you're new to Django.

Fortunately for us, tools like django-debug-toolbar and ccbv.co.uk are super helpful in providing extra context for debugging.

My goal for this app was to take what goes on under the hood in a class-based view and display it in an easy to use interface, just like what django-debug-toolbar does.

Hopefully this can help debug your class-based views!

Happy coding! ✨

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-cbv-inspect-0.2.1.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

django_cbv_inspect-0.2.1-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file django-cbv-inspect-0.2.1.tar.gz.

File metadata

  • Download URL: django-cbv-inspect-0.2.1.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for django-cbv-inspect-0.2.1.tar.gz
Algorithm Hash digest
SHA256 9e47af62ade912a5b097520c40e646d575f0e678f88ec12de65c3ce3244ce8e3
MD5 54947b4534796e62aef106b43e910f96
BLAKE2b-256 fd0fd9b02bcf0947385029751d96f989a8b676e46998172896dccc8cb5e01aca

See more details on using hashes here.

File details

Details for the file django_cbv_inspect-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_cbv_inspect-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 64df0412987b0b385e3a07694839fe0dbbf473a413b5e6a4b1f62f54124de449
MD5 c0c71c2051614fcde9d30ff0159b71ec
BLAKE2b-256 12baebef0a442602a40a8d4c3e4570c6eb4c20ef1b0d67943a317bae4891fdd3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page