Skip to main content

Django python exception model, admin, logging handler, middleware and excepthook

Project description

Installation

$ pip install django-command-exception

settings.py

INSTALLED_APPS+=['django_command_exception']

migrate

$ python manage.py migrate

Models

model table columns/fields
CommandException django_command_exception id,command,exc_class,exc_message,exc_traceback,created_at

Examples

call_command

from django_command_exception.models import CommandException

try:
    call_command(name)
except Exception as e:
    CommandException(command=name).save()

BaseCommand

from django_command_exception.models import CommandException

class BaseCommand(BaseCommand):
    def execute(self, *args, **options):
        try:
            return super().execute(*args, **options)
        except Exception as e:
            CommandException(command=type(self).__module__.split('.')[-1]).save()

CommandExceptionMixin

from django_command_exception.mixins import CommandExceptionMixin

class Command(CommandExceptionMixin,BaseCommand):
    def handle(self, *args, **options):
        try:
            ...
        except Exception as e:
            self.error(e)

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_command_exception-1.0.2.tar.gz (2.6 kB view details)

Uploaded Source

File details

Details for the file django_command_exception-1.0.2.tar.gz.

File metadata

File hashes

Hashes for django_command_exception-1.0.2.tar.gz
Algorithm Hash digest
SHA256 c4f0bdc40ac60fc64b0ea0b5122e0af5119791de4c3929a2a4619fcafbffcf52
MD5 cf2192d771dfa21835f308062bf93d1d
BLAKE2b-256 ac51c5296b4dac2478b778987392e892ebaa77dd035dfa838cf4aeaf92e45a7f

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