Django middleware to view exceptions in PuDB https://github.com/hwalinga/django-pudb3
This is Django middleware that will intercept exceptions and puts you in PuDB to do further investigation. This is also known as post-mortem debugging.
Note that you can already use PuDB with Django without this using import pudb; pu.db
or by running pudb3 manage.py runserver
(however the latter is a bit clumsy). This piece of middleware is purely to intercept exceptions.
NB. You should have PuDB installed already.
pip install django-pudb3
- In your
settings.py
:- Add
'django_pudb.PudbMiddleware'
at/near the end of yourMIDDLEWARE_CLASSES
- Set
DEBUG_PROPAGATE_EXCEPTIONS = True
- Add
- Run
./manage.py runserver --nothreading
Now you should see PuDB pop up in your console window whenever a view raises an exception.
- This package has zero requirements on purpose, so that you can install it (system|user)-wide, and still get to install Django in your virtualenvs.
- As PuDB doesn't support threading (yet, hopefully), django-pudb doesn't either.
0.2.0 (2020-10-23)
- Updated to work with newer versions of Django and Python.
0.1.0 (2014-05-06)
- Initial version. Just the middleware; zero magic.
Minimal Django version is 1.10.
Despite the name, also still works in Python2.7 last time I checked.
This is an updated version of https://github.com/akanouras/django-pudb
You might also be interested in https://github.com/0atman/django-pdb-pudb
Copyright (C) 2014 Antonis Kanouras antonis@metadosis.eu Hielke Walinga hielkewalinga@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.