Django has very good debug toolbar for debugging SQL
. While working with Single Page Application
and API
exceptions can’t be displayed in browser. Exception is sent to front end. What if the exception can be printed to console ?
Django middleware gets called for every request/response
. The small helper class looks like
Add the filename and class name to MIDDLEWARE_CLASSES
in settings file like
This is how exceptions looks
See also
- Python Typing Koans
- Model Field - Django ORM Working - Part 2
- Structure - Django ORM Working - Part 1
- jut - render jupyter notebook in the terminal
- Five reasons to use Py.test
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.